
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #f25864;
            --bg-primary: #fce3e5;
            --bg-secondary: #FFFFFF;
            --text-primary: #040404;
            --text-secondary: #6B7280;
            --success: #10B981;
            --error: #EF4444;
            --shadow: 0 8px 24px rgba(34, 0, 3, 0.08);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-primary);
        }

        h1 {
            font-size: 60px;
            font-weight: 700;
            line-height: 1.2;
        }

        h2 {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.25;
        }

        h3 {
            font-size: 24px;
            font-weight: 600;
            line-height: 1.4;
        }

        p {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(248, 249, 250, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 16px 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.25s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 160px 0 96px;
            display: flex;
            align-items: center;
            min-height: 600px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .hero-image {
            height: 400px;
            background-image: url(../images/hero.webp);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

       

        .hero-content h1 {
            margin-bottom: 24px;
        }

        .hero-content p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .btn {
            display: inline-block;
            padding: 24px;
            height: 48px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn:hover {
            background: #f25864;
            transform: translateY(-2px);
        }

        .btn:active {
            transform: scale(0.98);
        }

        /* Sections */
        .section {
            padding: 96px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header p {
            color: var(--text-secondary);
            margin-top: 16px;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .service-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 32px;
            transition: all 0.25s ease;
            cursor: pointer;
            box-shadow: var(--shadow);
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(34, 0, 3, 0.15);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-bottom: 24px;
        }

        .service-card h3 {
            margin-bottom: 16px;
        }

        .service-card p {
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.25s ease;
        }

        .service-link:hover {
            gap: 12px;
        }

        /* Why Choose Us */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 48px;
        }

        .why-us-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .why-us-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 24px;
        }

        .why-us-item h3 {
            margin-bottom: 12px;
        }

        .why-us-item p {
            color: var(--text-secondary);
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 16px;
            border-radius: 8px;
            overflow: hidden;
            background: var(--bg-secondary);
            box-shadow: var(--shadow);
        }

        .faq-question {
            width: 100%;
            padding: 24px;
            text-align: left;
            background: none;
            border: none;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.25s ease;
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            max-height: 200px;
        }

        .faq-answer p {
            padding: 0 24px 24px;
            color: var(--text-secondary);
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
        }

        .contact-info h3 {
            margin-bottom: 32px;
        }

        .contact-item {
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .contact-form {
            background: var(--bg-secondary);
            padding: 48px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 1px solid #E5E7EB;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.25s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: white;
            padding: 64px 0 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h3 {
            margin-bottom: 24px;
            color: var(--primary-color);
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            margin-bottom: 8px;
            display: block;
            transition: color 0.25s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #444;
            color: #999;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 24px;
        }

        .footer-links a {
            color: #999;
            cursor: pointer;
            transition: color 0.25s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        /* Popups */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: none;
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .popup {
            background: white;
            border-radius: 12px;
            padding: 48px;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: popupSlideIn 0.3s ease;
        }

        @keyframes popupSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .popup-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-secondary);
        }

        .popup h2 {
            margin-bottom: 32px;
            color: var(--text-primary);
        }

        .popup h3 {
            margin: 24px 0 16px;
            color: var(--text-primary);
        }

        .popup p {
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        /* Newsletter Form */
        .newsletter-form {
            max-width: 500px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .checkbox-group {
            margin: 24px 0;
        }

        .checkbox-group input[type="checkbox"] {
            margin-right: 8px;
        }

        .success-message {
            background: var(--success);
            color: white;
            padding: 16px;
            border-radius: 8px;
            margin-top: 24px;
            display: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 28px;
            }

            .section {
                padding: 64px 0;
            }

            .hero {
                padding: 120px 0 64px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .why-us-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .popup {
                margin: 24px;
                padding: 32px;
            }

            .footer-links {
                flex-direction: column;
                gap: 16px;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 16px;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 24px;
            }

            .contact-form {
                padding: 32px 24px;
            }
        }
    