        :root {
            --red-primary: #E31B23;
            --red-light: #ff4d52;
            --red-dark: #b31419;
            --blue-primary: #00A3E0;
            --blue-light: #4fc3f7;
            --blue-dark: #0077a8;
            --cream: #FFF9F5;
            --warm-white: #FFFCFA;
            --text-dark: #2D3436;
            --text-muted: #636e72;
            --rose-blush: #FFE4E1;
            --sky-soft: #E3F4FC;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--warm-white);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
        }

        /* Floating shapes background */
        .bg-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--rose-blush) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--sky-soft) 0%, transparent 70%);
            bottom: 20%;
            left: -50px;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--rose-blush) 0%, transparent 70%);
            top: 50%;
            right: 10%;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(20px, -20px) scale(1.05); }
            50% { transform: translate(-10px, 10px) scale(0.95); }
            75% { transform: translate(-20px, -10px) scale(1.02); }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 252, 250, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            position: relative;
        }

        .logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text span:first-child {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--red-primary);
            letter-spacing: 1px;
        }

        .logo-text span:last-child {
            font-size: 0.75rem;
            color: var(--blue-primary);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s;
        }

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

        nav a:hover {
            color: var(--red-primary);
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--red-primary), var(--red-light));
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(227, 27, 35, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(227, 27, 35, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 40px 80px;
            position: relative;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            animation: slideIn 1s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--sky-soft);
            color: var(--blue-dark);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.15;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .hero h1 span {
            color: var(--red-primary);
            position: relative;
        }

        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: var(--rose-blush);
            z-index: -1;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-dark);
            padding: 14px 32px;
            border: 2px solid var(--text-dark);
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: var(--text-dark);
            color: white;
        }

        .hero-stats {
            display: flex;
            gap: 50px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--blue-primary);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .hero-visual {
            position: relative;
            animation: fadeIn 1.2s ease-out 0.3s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
        }

        .hero-image {
            width: 100%;
            height: 550px;
            object-fit: cover;
            background: linear-gradient(135deg, var(--rose-blush) 0%, var(--sky-soft) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-placeholder {
            font-size: 8rem;
            opacity: 0.4;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 20px 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            animation: floatCard 4s ease-in-out infinite;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-card-1 {
            bottom: -20px;
            left: -30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .floating-card-1 .icon {
            width: 50px;
            height: 50px;
            background: var(--sky-soft);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .floating-card-1 .info strong {
            display: block;
            font-size: 1.1rem;
        }

        .floating-card-1 .info span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .floating-card-2 {
            top: 40px;
            right: -20px;
            animation-delay: -2s;
        }

        .floating-card-2 .rating {
            display: flex;
            gap: 3px;
            margin-bottom: 5px;
        }

        .floating-card-2 .rating span {
            color: #FFD700;
        }

        .floating-card-2 p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Services Section */
        .services {
            padding: 120px 40px;
            background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 25px;
            padding: 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red-primary), var(--blue-primary));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .service-icon.red {
            background: var(--rose-blush);
        }

        .service-icon.blue {
            background: var(--sky-soft);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--red-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: gap 0.3s;
        }

        .service-link:hover {
            gap: 12px;
        }

        /* About Section */
        .about {
            padding: 120px 40px;
            background: var(--warm-white);
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--sky-soft), var(--rose-blush));
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            opacity: 0.6;
        }

        .about-image-accent {
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--blue-primary);
            border-radius: 25px;
            bottom: -30px;
            right: -30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'Cormorant Garamond', serif;
            text-align: center;
            padding: 20px;
        }

        .about-image-accent span {
            font-size: 3rem;
            font-weight: 600;
            display: block;
        }

        .about-content h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
        }

        .about-content h2 span {
            color: var(--red-primary);
        }

        .about-content .lead {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .about-content p {
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 40px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 15px;
            background: var(--rose-blush);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .about-feature span {
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Testimonial Section */
        .testimonials {
            padding: 120px 40px;
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '"';
            position: absolute;
            top: -50px;
            left: 50px;
            font-size: 400px;
            font-family: 'Cormorant Garamond', serif;
            color: white;
            opacity: 0.1;
        }

        .testimonials .section-header h2 {
            color: white;
        }

        .testimonials .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

        .testimonial-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-content {
            background: white;
            border-radius: 30px;
            padding: 60px;
            position: relative;
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-style: italic;
            line-height: 1.6;
            color: var(--text-dark);
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--sky-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .testimonial-info strong {
            display: block;
            font-size: 1.1rem;
        }

        .testimonial-info span {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            padding: 120px 40px;
            background: var(--cream);
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .contact-info h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
        }

        .contact-info .lead {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-item-icon {
            width: 55px;
            height: 55px;
            border-radius: 15px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .contact-item-content strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .contact-item-content span {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .contact-form-wrapper {
            background: white;
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

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

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

        .contact-form-wrapper .cta-btn {
            width: 100%;
            padding: 18px;
            font-size: 1rem;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 80px 40px 30px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .logo-text span:first-child {
            color: white;
        }

        .footer-brand .logo-text span:last-child {
            color: var(--blue-light);
        }

        .footer-brand p {
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .footer-links h4 {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: white;
        }

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

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--blue-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

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

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

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

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

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

        body.menu-open {
            overflow: hidden;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 30px;
            }

            .hero {
                padding: 100px 30px 60px;
            }

            .hero-container,
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

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

            .services,
            .about,
            .testimonials,
            .contact {
                padding: 80px 30px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            footer {
                padding: 60px 30px 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
            }

            .mobile-menu-btn {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
                padding: 100px 30px 30px;
                transition: right 0.3s ease;
                z-index: 1000;
                overflow-y: auto;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            nav li {
                border-bottom: 1px solid #f0f0f0;
            }

            nav a {
                display: block;
                padding: 18px 0;
                font-size: 1.1rem;
            }

            nav a::after {
                display: none;
            }

            .nav-container .cta-btn {
                display: none;
            }

            .hero {
                padding: 100px 20px 40px;
                min-height: auto;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .hero-buttons .cta-btn,
            .hero-buttons .btn-secondary {
                width: 100%;
                text-align: center;
                padding: 16px 24px;
            }

            .hero-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .hero-image {
                height: 350px;
            }

            .floating-card {
                padding: 15px 20px;
            }

            .floating-card-1 {
                bottom: -15px;
                left: 10px;
                transform: scale(0.85);
            }

            .floating-card-2 {
                top: 20px;
                right: 10px;
                transform: scale(0.85);
            }

            .services,
            .about,
            .testimonials,
            .contact {
                padding: 60px 20px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 30px;
            }

            .about-image-main {
                height: 350px;
            }

            .about-image-accent {
                width: 150px;
                height: 150px;
                bottom: -20px;
                right: -20px;
            }

            .about-image-accent span {
                font-size: 2.2rem;
            }

            .about-content h2 {
                font-size: 2rem;
            }

            .about-content p {
                font-size: 0.95rem;
            }

            .testimonial-content {
                padding: 35px 25px;
            }

            .testimonial-text {
                font-size: 1.2rem;
            }

            .contact-form-wrapper {
                padding: 30px 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            footer {
                padding: 50px 20px 30px;
            }
        }

        /* Override inline grid styles for responsive layouts */
        @media (max-width: 768px) {
            /* Force single column layouts on mobile by overriding inline styles */
            [style*="grid-template-columns: 1fr 1fr"],
            [style*="grid-template-columns: 1fr 2fr"],
            [style*="grid-template-columns: 2fr 1fr"],
            [style*="grid-template-columns: repeat(2, 1fr)"],
            [style*="grid-template-columns: repeat(3, 1fr)"] {
                grid-template-columns: 1fr !important;
            }

            [style*="grid-template-columns: repeat(4, 1fr)"] {
                grid-template-columns: 1fr !important;
            }

            [style*="grid-template-columns: repeat(5, 1fr)"] {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            /* Adjust page header font sizes */
            section h1 {
                font-size: 2.2rem !important;
            }

            section h2 {
                font-size: 2rem !important;
            }

            section h3 {
                font-size: 1.5rem !important;
            }

            /* Reduce padding on sections with inline styles */
            section[style*="padding: 120px"] {
                padding: 60px 20px !important;
            }

            section[style*="padding: 100px"] {
                padding: 50px 20px !important;
            }

            section[style*="padding: 80px"] {
                padding: 40px 20px !important;
            }

            /* Fix gap spacing on mobile */
            [style*="gap: 80px"] {
                gap: 40px !important;
            }

            [style*="gap: 60px"] {
                gap: 30px !important;
            }

            /* Adjust image heights on mobile */
            img[style*="height: 600px"] {
                height: 300px !important;
            }

            /* Fix CTA button layout */
            [style*="display: flex"][style*="gap: 20px"][style*="justify-content: center"] {
                flex-direction: column !important;
            }

            [style*="display: flex"][style*="gap: 20px"][style*="justify-content: center"] > * {
                width: 100% !important;
                text-align: center !important;
            }

            /* Center contact page sections on mobile */
            section > div > div[style*="grid-template-columns: 1fr 1fr"] > div {
                margin-left: auto !important;
                margin-right: auto !important;
                max-width: 100% !important;
            }

            /* Fix form alignment on mobile */
            form[id="contactForm"] {
                margin: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                padding: 30px 20px !important;
                box-sizing: border-box !important;
            }

            /* Fix form input widths */
            form[id="contactForm"] input,
            form[id="contactForm"] textarea,
            form[id="contactForm"] select {
                width: 100% !important;
                box-sizing: border-box !important;
            }

            /* Center headings in stacked sections */
            section h2:not(footer h2),
            section h3:not(footer h3) {
                text-align: center !important;
            }

            /* Center paragraph text in contact sections on mobile */
            section p {
                text-align: center !important;
            }

            /* Exception: Keep form labels and inputs left-aligned */
            form label,
            form p,
            form input,
            form textarea,
            form select {
                text-align: left !important;
            }

            /* Center divs inside contact sections */
            div[style*="background: linear-gradient(135deg, var(--rose-blush)"],
            div[style*="background: white"][style*="padding: 40px"] {
                margin-left: auto !important;
                margin-right: auto !important;
            }

            /* Center Emergency Contact card content */
            div[style*="background: linear-gradient(135deg, var(--rose-blush)"] h3,
            div[style*="background: linear-gradient(135deg, var(--rose-blush)"] p {
                text-align: center !important;
            }

            /* Center the phone number div inside Emergency Contact */
            div[style*="background: linear-gradient(135deg, var(--rose-blush)"] div[style*="background: white"] {
                text-align: center !important;
            }

            div[style*="background: linear-gradient(135deg, var(--rose-blush)"] div[style*="background: white"] p {
                text-align: center !important;
                margin: 0 auto !important;
            }

            /* Center Connect With Us section */
            div[style*="background: white"][style*="padding: 40px"] h3 {
                text-align: center !important;
            }

            /* Ensure Why Contact Us content stays centered */
            section > div > div[style*="grid-template-columns"] > div > h2,
            section > div > div[style*="grid-template-columns"] > div > p {
                text-align: center !important;
            }
        }

        @media (max-width: 480px) {
            .logo-icon {
                width: 45px;
                height: 45px;
            }

            .logo-text span:first-child {
                font-size: 1.1rem;
            }

            .logo-text span:last-child {
                font-size: 0.65rem;
            }

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

            .hero p {
                font-size: 0.95rem;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 8px 16px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .stat {
                padding: 15px;
                background: white;
                border-radius: 15px;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }

            .about-content h2 {
                font-size: 1.75rem;
            }

            .testimonials::before {
                font-size: 200px;
                top: 0;
                left: 20px;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }

            /* Further reduce core values to single column on very small screens */
            [style*="grid-template-columns: repeat(5, 1fr)"] {
                grid-template-columns: 1fr !important;
            }

            /* Smaller page headers */
            section h1 {
                font-size: 1.8rem !important;
            }

            section h2 {
                font-size: 1.6rem !important;
            }

            section h3 {
                font-size: 1.3rem !important;
            }

            /* Adjust image heights for very small screens */
            img[style*="height: 600px"] {
                height: 250px !important;
            }
        }
