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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9ff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: white;
            border-radius: 20px;
            margin: 20px;
            padding: 15px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border: 2px solid #e6f0ff;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #2563eb;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 10px;
            font-size: 20px;
        }

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

        .nav-menu a {
            text-decoration: none;
            color: #2563eb;
            font-weight: 500;
            font-size: 16px;
        }

        .contact-btn {
            background: #2563eb;
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .contact-btn:hover {
            background: #1d4ed8;
        }

        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content .highlight {
            color: #2563eb;
        }

        .hero-content p {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .customers {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .customer-avatars {
            display: flex;
            margin-right: 15px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
            background: #ddd;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .customer-text {
            font-size: 14px;
            color: #666;
        }

        .get-started-btn {
            background: #2563eb;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-block;
            transition: background 0.3s;
        }

        .get-started-btn:hover {
            background: #1d4ed8;
        }

        .hero-image {
            /* background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); */
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
        }

        /* Services Section */
        .services {
            padding: 80px 20px;
            text-align: center;
        }

        .services h2 {
            font-size: 48px;
            color: #2563eb;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .services-intro {
            font-size: 24px;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-intro .highlight {
            font-weight: bold;
        }

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

        .service-card {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: left;
            border: 2px solid #e6f0ff;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .instagram-icon {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .facebook-icon {
            background: #1877f2;
        }

        .twitter-icon {
            background: #000;
        }

        .telegram-icon {
            background: #0088cc;
        }

        .service-card h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .service-card p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #444;
        }

        .service-btn {
            background: #2563eb;
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .service-btn:hover {
            background: #1d4ed8;
        }

        /* Why Section */
        .why-section {
            padding: 80px 20px;
            text-align: center;
            background: white;
        }

        .why-section h2 {
            font-size: 48px;
            color: #2563eb;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .why-intro {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .why-intro .highlight {
            font-weight: bold;
        }

        .why-subtitle {
            font-size: 20px;
            color: #666;
            margin-bottom: 60px;
        }

        .why-items {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .why-item {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 50px;
            padding: 30px 40px;
            display: flex;
            align-items: center;
            text-align: left;
            border: 2px solid #e6f0ff;
        }

        .why-number {
            width: 60px;
            height: 60px;
            background: #2563eb;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin-right: 30px;
            flex-shrink: 0;
        }

        .why-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .why-content p {
            font-size: 16px;
            color: #666;
        }

        /* About Section */
        .about-section {
            padding: 80px 20px;
            text-align: center;
        }

        .about-section h2 {
            font-size: 48px;
            color: #2563eb;
            margin-bottom: 60px;
            font-weight: 400;
        }

        .about-card {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 20px;
            padding: 60px 40px;
            max-width: 1000px;
            margin: 0 auto;
            border: 2px solid #e6f0ff;
        }

        .about-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            padding: 0px;
        }

        .about-logo-icon {
            /* width: 80px;
            height: 80px; */
            background: #2563eb;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 20px;
            /* font-size: 40px; */
        }

        .about-logo-text {
            font-size: 36px;
            font-weight: bold;
            color: #2563eb;
        }

        .about-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 60px;
            color: #444;
        }

        .about-description .highlight {
            font-weight: bold;
        }

        .trusted-customers {
            margin-bottom: 40px;
        }

        .trusted-customers h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            color: #333;
        }

        .client-logos {
            background: white;
            border-radius: 50px;
            padding: 30px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            border: 2px solid #e6f0ff;
        }

        .client-logo {
            width: 120px;
            height: 60px;
            background: #f0f0f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #666;
            text-align: center;
        }

        .about-tagline {
            font-size: 20px;
            color: #666;
            font-style: italic;
        }

        .about-tagline .highlight {
            font-weight: bold;
            color: #333;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 20px;
            text-align: center;
            background: white;
        }

        .contact-section h2 {
            font-size: 48px;
            color: #2563eb;
            margin-bottom: 60px;
            font-weight: 400;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 20px;
            padding: 60px;
            border: 2px solid #e6f0ff;
        }

        .contact-info {
            text-align: left;
        }

        .contact-info h3 {
            font-size: 32px;
            color: #2563eb;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .contact-item {
            background: white;
            border-radius: 25px;
            padding: 15px 25px;
            margin-bottom: 20px;
            font-size: 18px;
            color: #333;
            border: 2px solid #e6f0ff;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-input {
            background: white;
            border: 2px solid #e6f0ff;
            border-radius: 25px;
            padding: 15px 25px;
            font-size: 16px;
            outline: none;
        }

        .form-input::placeholder {
            color: #999;
        }

        .form-textarea {
            background: white;
            border: 2px solid #e6f0ff;
            border-radius: 20px;
            padding: 20px 25px;
            font-size: 16px;
            outline: none;
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .form-textarea::placeholder {
            color: #999;
        }

        .submit-btn {
            background: #2563eb;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #1d4ed8;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            padding: 60px 20px 40px;
            text-align: center;
            color: #333;
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 40px;
        }

        .footer-info {
            text-align: left;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 60px;
            height: 60px;
            background: #2563eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            font-size: 24px;
        }

        .footer-logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #2563eb;
        }

        .footer-description {
            font-size: 16px;
            line-height: 1.6;
            color: #444;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            /* background: #333; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 20px;
            transition: background 0.3s;
        }

        .social-link:hover {
            background: #2563eb;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            font-size: 14px;
            color: #333;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .header {
                margin: 10px;
                padding: 15px 20px;
            }

            .nav-menu {
                display: none;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 20px;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .services h2,
            .why-section h2,
            .about-section h2,
            .contact-section h2 {
                font-size: 36px;
            }

            .services-intro,
            .why-intro {
                font-size: 20px;
            }

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

            .service-card {
                /* background-color: linear-gradient(135deg, #aeb2b8 0%, #bfdbfe 100%); */
                padding: 30px 20px;
            }

            .why-item {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }

            .why-number {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .about-card {
                padding: 40px 20px;
            }

            .client-logos {
                flex-direction: column;
                gap: 15px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 20px;
            }

            .contact-info {
                text-align: center;
            }

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

            .footer-info {
                text-align: center;
            }

            .footer-logo {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 28px;
            }

            .services h2,
            .why-section h2,
            .about-section h2,
            .contact-section h2 {
                font-size: 28px;
            }

            .services-intro,
            .why-intro {
                font-size: 18px;
            }

            .about-logo-icon {
                width: 60px;
                height: 60px;
                font-size: 30px;
            }

            .about-logo-text {
                font-size: 28px;
            }
        }