
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #343A40;
            background-color: #fce2e0;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: #FFFFFF;
            box-shadow: 0px 4px 12px rgba(0, 87, 183, 0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #ff6f61;
            text-decoration: none;
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav a {
            text-decoration: none;
            color: #343A40;
            font-weight: 500;
            transition: color 0.25s ease;
        }

        .nav a:hover {
            color: #ff6f61;
        }

        .cta-button {
            background: #ff6f61;
            color: #FFFFFF;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-button:hover {
            background: #f35545;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: #fce2e0;
            padding: 160px 0 96px;
            text-align: center;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            color: #141618;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero p {
            font-size: 18px;
            color: #343A40;
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Section Styles */
        .section {
            padding: 96px 0;
        }

        .section h2 {
            font-size: 40px;
            font-weight: 700;
            color: #141618;
            text-align: center;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #6C757D;
            text-align: center;
            margin-bottom: 64px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Preview */
        .about-preview {
            background: #FFFFFF;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 24px;
            font-weight: 600;
            color: #141618;
            margin-bottom: 24px;
        }

        .about-text p {
            font-size: 16px;
            margin-bottom: 24px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #ff6f61;
        }

        .stat-label {
            font-size: 14px;
            color: #6C757D;
        }

        /* Why Choose Us */
        .why-choose-us {
            background: #fce2e0;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .feature {
            background: #FFFFFF;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0, 87, 183, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0px 8px 24px rgba(0, 87, 183, 0.12);
        }

        .feature-icon {
            font-size: 48px;
            color: #ff6f61;
            margin-bottom: 24px;
        }

        .feature h3 {
            font-size: 24px;
            font-weight: 600;
            color: #141618;
            margin-bottom: 16px;
        }

        /* Services */
        .services {
            background: #FFFFFF;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .service-card {
            background: #FFFFFF;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0, 87, 183, 0.08);
            border: 1px solid #E9ECEF;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0px 8px 24px rgba(0, 87, 183, 0.12);
        }

        .service-icon {
            font-size: 48px;
            color: #ff6f61;
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #141618;
            margin-bottom: 16px;
        }

        .service-card p {
            font-size: 14px;
            color: #6C757D;
        }

        /* Testimonials */
        .testimonials {
            background: #fce2e0;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .testimonial {
            background: #FFFFFF;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0, 87, 183, 0.08);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 24px;
            font-size: 16px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #ff6f61;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-weight: 600;
        }

        .author-info h4 {
            font-weight: 600;
            color: #141618;
        }

        .author-info p {
            font-size: 14px;
            color: #6C757D;
        }

        /* FAQ */
        .faq {
            background: #FFFFFF;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #FFFFFF;
            border: 1px solid #E9ECEF;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-question {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.25s ease;
        }

        .faq-question:hover {
            background-color: #fce2e0;
        }

        .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            color: #141618;
        }

        .faq-icon {
            color: #ff6f61;
            transition: transform 0.25s ease;
        }

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.25s ease;
        }

        .faq-answer.active {
            padding: 24px;
            max-height: 200px;
        }

        .faq-icon.active {
            transform: rotate(180deg);
        }

        /* Contact Form */
        .contact {
            background: #fce2e0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
        }

        .contact-form {
            background: #FFFFFF;
            padding: 48px;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0, 87, 183, 0.08);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #343A40;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 16px;
            border: 1px solid #fce2e0;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.2s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border: 2px solid #ff6f61;
            box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: #ff6f61;
            color: #FFFFFF;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
        }

        .submit-btn:hover {
            background: #f35545;
            transform: translateY(-2px);
        }

        .contact-info h3 {
            font-size: 24px;
            font-weight: 600;
            color: #141618;
            margin-bottom: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-item i {
            font-size: 20px;
            color: #ff6f61;
            width: 24px;
        }

        /* Footer */
        .footer {
            background: #141618;
            color: #FFFFFF;
            padding: 64px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #6C757D;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .footer-section ul li a:hover {
            color: #FFFFFF;
        }

        .footer-bottom {
            border-top: 1px solid #343A40;
            padding-top: 32px;
            text-align: center;
            color: #6C757D;
        }

        /* Popup Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #FFFFFF;
            padding: 48px;
            border-radius: 12px;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 600;
            color: #141618;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            color: #6C757D;
            cursor: pointer;
        }

        /* Success Message */
        .success-message {
            display: none;
            position: fixed;
            top: 20px;
            right: 20px;
            background: #28A745;
            color: #FFFFFF;
            padding: 16px 24px;
            border-radius: 8px;
            box-shadow: 0px 4px 12px rgba(40, 167, 69, 0.3);
            z-index: 3000;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .hero h1 {
                font-size: 40px;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .features,
            .service-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            .modal-content {
                margin: 20px;
                padding: 32px;
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }