* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: #fafafa;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            width: 100%;
        }

        .app-wrapper {
            width: 100%;
            min-height: 100%;
        }

        /* Loading Animation */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            animation: fadeOut 0.5s ease 2s forwards;
        }

        .loading-logo {
            font-size: 3rem;
            font-family: 'Georgia', serif;
            color: white;
            animation: logoFloat 2s ease-in-out;
        }

        @keyframes logoFloat {
            0%, 100% { opacity: 0; transform: translateY(20px); }
            50% { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeOut {
            to { opacity: 0; visibility: hidden; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 5%;
        }

        .logo {
            font-size: 1.8rem;
            font-family: 'Georgia', serif;
            font-weight: bold;
            background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #1f2937;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        header.scrolled nav a {
            color: #1f2937;
        }

        nav a:hover {
            color: #10b981;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn-login, .btn-logout {
            padding: 0.6rem 1.5rem;
            border: 2px solid #10b981;
            background: transparent;
            color: #10b981;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        header.scrolled .btn-login,
        header.scrolled .btn-logout {
            color: #10b981;
            border-color: #10b981;
        }

        .btn-login:hover, .btn-logout:hover {
            background: #10b981;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
        }

        .user-welcome {
            color: #10b981;
            font-weight: 600;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #1f2937;
            transition: all 0.3s ease;
        }

        /* Hero Section - Dynamic with real images */
      /* Hero Section - Dynamic with real images */
        .hero {
            width: 100%;
            height: 100vh; /* Full viewport height */
            min-height: 700px; /* Optional minimum height for larger screens */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }


        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(13, 148, 136, 0.8) 100%);
        }

        .hero-slide:nth-child(1) {
            background: url('https://i.pinimg.com/1200x/19/f3/65/19f36531d85250587a9253582a375ed3.jpg') center/cover;
        }

        .hero-slide:nth-child(2) {
            background: url('https://i.pinimg.com/1200x/68/aa/5e/68aa5e39bafd44871c71df3f91575352.jpg') center/cover;
        }

        .hero-slide:nth-child(3) {
            background: url('https://i.pinimg.com/736x/e2/6d/35/e26d352c8710bab40b472bca96997506.jpg') center/cover;
        }

        .hero-slide:nth-child(4) {
            background: url('https://i.pinimg.com/736x/d3/dd/65/d3dd6543f50c1feb3270278e9b34d3e5.jpg') center/cover;
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 2;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100%) translateX(50px); opacity: 0; }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-content h1 {
            font-family: 'Georgia', serif;
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeIn 1s ease 0.5s both;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            animation: fadeIn 1s ease 1s both;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeIn 1s ease 1.5s both;
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #10b981;
            transform: translateY(-3px);
        }

        /* About Section */
        .about {
            padding: 8rem 5%;
            background: #fff;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            height: 500px;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            font-family: 'Georgia', serif;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #1f2937;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #6b7280;
            margin-bottom: 1.5rem;
        }

        .timeline {
            margin-top: 3rem;
        }

        .timeline-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.5s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

        .timeline-content h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #1f2937;
        }

        .timeline-content p {
            color: #6b7280;
            margin: 0;
        }

        /* Services Section */
        .services {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #ecfdf5 0%, #fef3c7 100%);
        }

        .section-title {
            text-align: center;
            font-family: 'Georgia', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 4rem;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Blog Section */
        .blog {
            padding: 8rem 5%;
            background: white;
        }

        .blog-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 250px;
            position: relative;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-category {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%);
            color: white;
            border-radius: 15px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .blog-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .blog-card p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .btn-read-more {
            color: #10b981;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .btn-read-more:hover {
            gap: 1rem;
        }

/* Gallery Section */
.gallery {
    padding: 6rem 5%;
    background: #f5f7fb;
}

.gallery-filter {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    margin: 0 0.5rem;
    border: 2px solid #10b981;
    background: transparent;
    color: #10b981;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover, .filter-btn.active {
    background: #10b981;
    color: white;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(245, 158, 11, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

/* Marquee */
.gallery-marquee {
    margin-top: 4rem;
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 25s linear infinite;
}

.marquee-track img {
    height: 200px;
    width: auto;
    border-radius: 15px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
        /* Testimonials */
        .testimonials {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
            color: white;
        }

        .testimonials .section-title {
            color: white;
        }

        .testimonials .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            display: none;
            text-align: center;
            padding: 3rem;
            animation: fadeIn 0.5s ease;
        }

        .testimonial-slide.active {
            display: block;
        }

        .testimonial-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            border: 4px solid white;
            overflow: hidden;
            background: white;
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 1.2rem;
        }

        .testimonial-role {
            opacity: 0.8;
            margin-top: 0.5rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.3);
        }

        /* CTA Section */
        .cta {
            padding: 8rem 5%;
            background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=600&fit=crop') center/cover;
            position: relative;
            text-align: center;
            color: white;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-family: 'Georgia', serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .cta p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
        }

        /* Newsletter Section */
        .newsletter {
            padding: 6rem 5%;
            background: white;
            text-align: center;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 3rem auto 0;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .newsletter-input {
            flex: 1;
            min-width: 250px;
            padding: 1rem 1.5rem;
            border: 2px solid #e5e7eb;
            border-radius: 30px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #10b981;
        }

        .btn-subscribe {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-subscribe:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }

        .newsletter-success {
            display: none;
            margin-top: 1.5rem;
            padding: 1rem;
            background: #10b981;
            color: white;
            border-radius: 10px;
            animation: fadeIn 0.5s ease;
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #10b981;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links a {
            cursor: pointer;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background: #10b981;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 800px;
            width: 90%;
            max-height: 80%;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 35px;
            height: 35px;
            border: none;
            background: #f3f4f6;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: #10b981;
            color: white;
            transform: rotate(90deg);
        }

        .modal h2 {
            font-family: 'Georgia', serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #1f2937;
        }

        .modal h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .modal p {
            color: #6b7280;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .modal strong {
            color: #1f2937;
        }

        .modal ul {
            margin: 1rem 0 1rem 2rem;
            color: #6b7280;
            line-height: 1.8;
        }

        /* Auth Modal */
        .auth-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 600;
            color: #1f2937;
        }

        .form-group input {
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #10b981;
        }

        .form-submit {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
        }

        .form-toggle {
            text-align: center;
            margin-top: 1rem;
            color: #6b7280;
        }

        .form-toggle a {
            color: #10b981;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

        .form-toggle a:hover {
            text-decoration: underline;
        }

        .auth-message {
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            display: none;
        }

        .auth-message.success {
            background: #d1fae5;
            color: #065f46;
            display: block;
        }

        .auth-message.error {
            background: #fee2e2;
            color: #991b1b;
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .about-container {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid, .blog-grid, .gallery-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }
    