        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background: #ffffff;
            color: #8B1538;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-img {
            width: 45px;
            height: 45px;
            object-fit: contain;
            background: transparent;
            border-radius: 4px;
            flex-shrink: 0;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 110;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: #8B1538;
            border-radius: 3px;
            transition: transform 0.3s, opacity 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #8B1538;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1rem;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #A0826D;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #8B1538 0%, #A0284E 100%);
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background: #6F4E37;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(111, 78, 55, 0.4);
        }

        /* Services Section */
        .services {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #8B1538;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #8B1538;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        /* About Section */
        .about {
            padding: 80px 20px;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #8B1538;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .about-features {
            list-style: none;
            margin-top: 2rem;
        }

        .about-features li {
            padding: 10px 0;
            color: #333;
            position: relative;
            padding-left: 30px;
        }

        .about-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #6F4E37;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 80px 20px;
            background: #8B1538;
            color: white;
        }

        .why-choose .section-title {
            color: white;
        }

        .why-choose .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .feature-box {
            text-align: center;
            padding: 30px;
        }

        .feature-box .icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-box h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .feature-box p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Contact Section */
        .contact {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-info h3 {
            color: #8B1538;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .contact-item .icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #6F4E37;
        }

        /* Updated Google Form Container */
        /* Form Button Card */
        .form-button-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-button-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            width: 100%;
        }

        .form-button-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .form-button-card h3 {
            color: #8B1538;
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .form-button-card p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .open-form-btn {
            background: #8B1538;
            color: white;
            border: none;
            padding: 14px 36px;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
        }

        .open-form-btn:hover {
            background: #a01d45;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 21, 56, 0.35);
        }

        .open-form-btn:active {
            transform: translateY(0);
        }

        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 14px;
            width: 100%;
            max-width: 620px;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.97);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-close {
            position: absolute;
            top: 12px;
            right: 16px;
            background: none;
            border: none;
            font-size: 2rem;
            color: #8B1538;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s;
            z-index: 10;
        }

        .modal-close:hover {
            background: rgba(139, 21, 56, 0.08);
        }

        .modal-title {
            color: #8B1538;
            font-size: 1.5rem;
            padding: 20px 24px 12px;
            border-bottom: 1px solid #f0f0f0;
            flex-shrink: 0;
        }

        .modal-form-wrapper {
            flex: 1;
            min-height: 500px;
            overflow: hidden;
        }

        .modal-form-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 500px;
            border: none;
        }

        /* Footer */
        footer {
            background: #8B1538;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        footer p {
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #A0826D;
        }

        /* Responsive Design */

        /* Tablet */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.4rem;
            }

            .hero {
                padding: 70px 20px;
            }

            .about-text h2,
            .section-title {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            nav {
                position: relative;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                gap: 0;
                position: absolute;
                top: 100%;
                left: -20px;
                right: -20px;
                background: #ffffff;
                padding: 0;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
                z-index: 100;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(139, 21, 56, 0.1);
            }

            .nav-links a {
                display: block;
                padding: 14px 24px;
                font-size: 1.05rem;
            }

            .nav-links a:hover {
                background: rgba(139, 21, 56, 0.05);
            }

            .logo {
                font-size: 1.1rem;
            }

            .logo-img {
                width: 36px;
                height: 36px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero {
                padding: 60px 16px;
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr 1fr;
            }

            .modal-content {
                max-height: 85vh;
            }

            .modal-form-wrapper {
                min-height: 450px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .service-card {
                padding: 24px;
            }

            .about-text h2 {
                font-size: 1.8rem;
            }

            .contact-info h3 {
                font-size: 1.5rem;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .logo {
                font-size: 0.95rem;
            }

            .logo-img {
                width: 32px;
                height: 32px;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .service-card {
                padding: 20px;
            }

            .service-card h3 {
                font-size: 1.25rem;
            }

            .feature-box {
                padding: 20px;
            }
        }