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

        /* Prevent horizontal overflow for specific elements only */
        body, main, section, header, footer, nav, .container {
            max-width: 100vw;
        }
        
        /* Allow grid items to size naturally within their containers */
        .about-content > *, .contact-content > *, .footer-content > * {
            max-width: none;
        }

        img, video, iframe, object, embed {
            max-width: 100%;
            height: auto;
        }

        :root {
            --primary-teal: #5a9aaa;
            --light-teal: #7bb3c1;
            --dark-teal: #3e7a8a;
            --charcoal: #2c3e50;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --white: #ffffff;
            --black: #1a1a1a;
        }

        html {
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--charcoal);
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            backdrop-filter: none;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
        }

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

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            max-height: 105px;
            width: auto;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        header.scrolled .nav-links a {
            color: var(--charcoal);
        }

        .nav-links a:hover {
            color: var(--primary-teal);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        header.scrolled .mobile-menu-btn span {
            background: var(--charcoal);
        }

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

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('assets/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary-teal);
            color: var(--white);
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            background: var(--dark-teal);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(90, 154, 170, 0.4);
        }

        /* About Section */
        .about {
            padding: 8rem 0;
            background: var(--white);
        }

        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
            box-sizing: border-box;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--primary-teal);
            margin: 1rem auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1.2fr 1.8fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
            overflow: visible;
        }

        .about-image {
            position: relative;
            width: 100%;
        }

        .about-image img {
            width: 100%;
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: block;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary-teal);
            border-radius: 10px;
            z-index: -1;
        }

        .about-text {
            width: 100%;
        }

        .about-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--medium-gray);
        }

        .specialties {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .specialty-item {
            background: var(--light-gray);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border-left: 4px solid var(--primary-teal);
            transition: transform 0.3s ease;
        }

        .specialty-item:hover {
            transform: translateY(-5px);
        }

        .specialty-item h4 {
            font-weight: 600;
            color: var(--charcoal);
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 0;
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: stretch;
        }

        .contact-info {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--charcoal);
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(90, 154, 170, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(90, 154, 170, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(90, 154, 170, 0.1);
            border-color: rgba(90, 154, 170, 0.2);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
        }

        .contact-details h4 {
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: var(--medium-gray);
        }

        .contact-details a {
            color: var(--primary-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--dark-teal);
        }

        /* Contact Form */
        .contact-form-container {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }

        .contact-form-container h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--charcoal);
            margin-bottom: 2rem;
            text-align: left;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--charcoal);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            padding: 0.75rem;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-teal);
        }

        .form-group textarea {
            resize: vertical;
        }

        .form-submit-btn {
            width: 100%;
            background: var(--primary-teal);
            color: var(--white);
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-submit-btn:hover {
            background: var(--dark-teal);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(90, 154, 170, 0.4);
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            color: var(--white);
        }

        .footer-top {
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
            gap: 3rem;
        }

        .footer-section h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-logo img {
            max-height: 90px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-description {
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(90, 154, 170, 0.2);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-teal);
            transform: translateY(-2px);
        }

        .social-links svg {
            width: 20px;
            height: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--primary-teal);
        }

        .footer-contact p {
            margin-bottom: 0.8rem;
            opacity: 0.9;
        }

        .footer-contact a {
            color: var(--primary-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: var(--light-teal);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
            text-align: center;
        }

        .footer-bottom p {
            opacity: 0.8;
            margin: 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 100%;
                max-width: 100vw;
                height: calc(100vh - 80px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: right 0.3s ease;
                gap: 1rem;
                z-index: 999;
                overflow-x: hidden;
                box-sizing: border-box;
            }

            header:not(.scrolled) .nav-links {
                background: rgba(0, 0, 0, 0.9);
                backdrop-filter: blur(15px);
            }

            header:not(.scrolled) .nav-links a {
                color: var(--white);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .nav-links a {
                font-size: 1.2rem;
                padding: 1rem 2rem;
                display: block;
                width: 200px;
                text-align: center;
                border-radius: 8px;
                transition: all 0.3s ease;
            }

            .nav-links a:hover {
                background: var(--light-gray);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .specialties {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            nav {
                padding: 0 1rem;
            }

            .hero-content {
                padding: 0 1rem;
            }

            .about,
            .contact {
                padding: 4rem 0;
            }

            .footer-top {
                padding: 3rem 0 1.5rem;
            }

            .footer-content {
                gap: 1.5rem;
            }
        }


