  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}



        /* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #90D5FF;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #90D5FF;
}

.donate-btn {
    background-color: #dc2626;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 0.85rem;
}

.donate-btn:hover {
    background-color: #b91c1c;
}

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #90D5FF 0%, #7bc3f7 100%);
            color: white;
            text-align: center;
            padding: 120px 2rem 80px;
            margin-top: 80px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Container Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        /* Main Content */
        .main-content {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .post-header {
            position: relative;
            height: 300px;
            background: url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=800&h=400&fit=crop') center/cover;
        }

        .post-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
        }

        .post-meta {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            z-index: 2;
        }

        .post-meta span {
            display: inline-block;
            margin-right: 1rem;
            font-size: 0.9rem;
        }

        .post-content {
            padding: 2rem;
        }

        .post-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 300;
        }

        .post-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #666;
        }

        .post-quote {
            background: #f8f9fa;
            border-left: 4px solid #90D5FF;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.2rem;
            color: #555;
        }

        .post-quote small {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
            color: #90D5FF;
            font-weight: 600;
        }

        /* Image Gallery Styles */
        .image-gallery-section {
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .gallery-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #333;
            text-align: center;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }

        /* Related Posts Styles */
        .related-posts-section {
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 1px solid #eee;
        }

        .related-posts-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #333;
            text-align: center;
        }

        .related-posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .related-post-item {
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .related-post-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .related-post-image {
            width: 100%;
            height: 150px;
            overflow: hidden;
        }

        .related-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .related-post-item:hover .related-post-image img {
            transform: scale(1.05);
        }

        .related-post-content {
            padding: 1.2rem;
        }

        .related-post-content h4 {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .related-post-content h4 a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s ease;
        }

        .related-post-content h4 a:hover {
            color: #90D5FF;
        }

        .related-post-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.85rem;
            color: #666;
        }

        .related-post-date,
        .related-post-author {
            position: relative;
        }

        .related-post-date::before {
            content: "📅 ";
            margin-right: 0.3rem;
        }

        .related-post-author::before {
            content: "👤 ";
            margin-right: 0.3rem;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 600;
        }

        .categories-list {
            list-style: none;
        }

        .categories-list li {
            border-bottom: 1px solid #eee;
            padding: 0.5rem 0;
        }

        .categories-list li:last-child {
            border-bottom: none;
        }

        .categories-list a {
            text-decoration: none;
            color: #666;
            transition: color 0.3s ease;
        }

        .categories-list a:hover {
            color: #90D5FF;
        }

        .latest-post-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }

        .latest-post-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .latest-post-thumb {
            width: 70px;
            height: 70px;
            border-radius: 5px;
            object-fit: cover;
        }

        .latest-post-content h4 {
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .latest-post-content h4 a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s ease;
        }

        .latest-post-content h4 a:hover {
            color: #90D5FF;
        }

        .latest-post-date {
            font-size: 0.8rem;
            color: #999;
        }

        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background: #f0f8ff;
            color: #90D5FF;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: #90D5FF;
            color: white;
        }

        .calendar {
            width: 100%;
            border-collapse: collapse;
        }

        .calendar th,
        .calendar td {
            text-align: center;
            padding: 0.5rem;
            border: 1px solid #eee;
        }

        .calendar th {
            background: #f8f9fa;
            font-weight: 600;
            color: #666;
        }

        .calendar .today {
            background: #90D5FF;
            color: white;
            font-weight: bold;
        }

        .event-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }

        .event-item:last-child {
            border-bottom: none;
        }

        .event-date {
            background: #90D5FF;
            color: white;
            padding: 0.5rem;
            border-radius: 5px;
            text-align: center;
            min-width: 60px;
        }

        .event-date .day {
            display: block;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .event-date .month {
            display: block;
            font-size: 0.8rem;
        }

        .event-content h4 {
            margin-bottom: 0.5rem;
            color: #333;
        }

        .event-content p {
            font-size: 0.9rem;
            color: #666;
        }

        /* Comments Section */
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .comments-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .comment-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }

        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #90D5FF;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

        .comment-content h4 {
            margin-bottom: 0.5rem;
            color: #333;
        }

        .comment-date {
            font-size: 0.8rem;
            color: #999;
            margin-bottom: 0.5rem;
        }

        .comment-text {
            color: #666;
            line-height: 1.6;
        }

        .reply-btn {
            background: none;
            border: none;
            color: #90D5FF;
            cursor: pointer;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        /* Comment Form */
        .comment-form {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: #90D5FF;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .submit-btn:hover {
            background: #7bc3f7;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #90D5FF;
        }

        .footer-section p {
            margin-bottom: 0.5rem;
            color: #bdc3c7;
        }

        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #90D5FF;
        }

        .footer-bottom {
            background: #1a252f;
            text-align: center;
            padding: 1rem 0;
            margin-top: 2rem;
            color: #bdc3c7;
        }
		
		/* Mobile Navigation Fixes */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: #90D5FF;
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .container {
                grid-template-columns: 1fr;
                padding: 1rem;
            }

            .post-title {
                font-size: 2rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .image-gallery {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 0.8rem;
            }

            .gallery-image {
                height: 150px;
            }

            .related-posts-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .related-posts-title,
            .gallery-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 100px 1rem 60px;
            }

            .post-content {
                padding: 1rem;
            }

            .footer-container {
                padding: 0 1rem;
            }

            .image-gallery {
                grid-template-columns: 1fr;
            }

            .image-gallery-section,
            .related-posts-section {
                margin: 2rem 0;
                padding: 1.5rem 0;
            }
        }
     	

		