* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: #000000;
        color: #E0E0E0;
        line-height: 1.6;
    }

    html {
        scroll-behavior: smooth;
    }

    /* Hero Section */
    .service-hero {
        position: relative;
        min-height: 60vh;
        display: flex;
        align-items: center;
        background: #000000;
        overflow: hidden;
        padding: 8rem 2rem 4rem;
    }

    .service-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: radial-gradient(ellipse at top, rgba(0, 194, 160, 0.15), transparent 60%);
        pointer-events: none;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .breadcrumb {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 2rem;
        font-size: 0.9rem;
        color: #B0B0B0;
    }

    .breadcrumb a {
        color: #00C2A0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb a:hover {
        color: #1E73BE;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(0, 194, 160, 0.1);
        border: 1px solid rgba(0, 194, 160, 0.3);
        color: #00C2A0;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 2rem;
    }

    .service-hero h1 {
        font-size: 4rem;
        font-weight: 800;
        color: #FFFFFF;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-gradient-text {
        background: linear-gradient(135deg, #00C2A0, #1E73BE);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .service-hero p {
        font-size: 1.3rem;
        color: #B0B0B0;
        max-width: 800px;
        margin: 0 auto 2.5rem;
        line-height: 1.8;
    }

    .hero-cta {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-primary {
        background: linear-gradient(135deg, #00C2A0, #1E73BE);
        color: #FFFFFF;
        box-shadow: 0 10px 30px rgba(0, 194, 160, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 194, 160, 0.5);
    }

    .btn-secondary {
        background: transparent;
        border: 2px solid rgba(0, 194, 160, 0.5);
        color: #00C2A0;
    }

    .btn-secondary:hover {
        background: rgba(0, 194, 160, 0.1);
        border-color: #00C2A0;
    }

    /* Features Grid */
    .features-section {
        padding: 6rem 2rem;
        background: #000000;
    }

    .section-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-label {
        color: #00C2A0;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1.1rem;
        color: #B0B0B0;
        max-width: 700px;
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .feature-card {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
        border: 1px solid rgba(0, 194, 160, 0.2);
        border-radius: 20px;
        padding: 2.5rem;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        border-color: rgba(0, 194, 160, 0.5);
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(0, 194, 160, 0.2), rgba(30, 115, 190, 0.2));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #00C2A0;
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        color: #FFFFFF;
        margin-bottom: 1rem;
    }

    .feature-card p {
        color: #B0B0B0;
        line-height: 1.8;
    }

    /* Tech Stack Section */
    .tech-stack-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #000000, rgba(0, 194, 160, 0.03));
    }

    .tech-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .tech-category {
        background: rgba(26, 26, 26, 0.6);
        border: 1px solid rgba(0, 194, 160, 0.2);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .tech-category:hover {
        border-color: rgba(0, 194, 160, 0.5);
        transform: translateY(-5px);
    }

    .tech-category h3 {
        color: #00C2A0;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .tech-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .tech-badge {
        background: rgba(0, 194, 160, 0.1);
        border: 1px solid rgba(0, 194, 160, 0.3);
        color: #E0E0E0;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Process Section */
    .process-section {
        padding: 6rem 2rem;
        background: #000000;
    }

    .process-timeline {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #00C2A0, #1E73BE);
    }

    .process-step {
        position: relative;
        padding-left: 100px;
        margin-bottom: 4rem;
    }

    .process-number {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #00C2A0, #1E73BE);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: #FFFFFF;
        box-shadow: 0 10px 30px rgba(0, 194, 160, 0.4);
    }

    .process-content h3 {
        font-size: 1.8rem;
        color: #FFFFFF;
        margin-bottom: 0.75rem;
    }

    .process-content p {
        color: #B0B0B0;
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* Services Detail */
    .services-detail-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, rgba(0, 194, 160, 0.03), #000000);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .service-item {
        background: rgba(26, 26, 26, 0.6);
        border: 1px solid rgba(0, 194, 160, 0.2);
        border-radius: 16px;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .service-item:hover {
        border-color: rgba(0, 194, 160, 0.5);
        background: rgba(0, 194, 160, 0.05);
    }

    .service-item h3 {
        color: #FFFFFF;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .service-item h3 i {
        color: #00C2A0;
    }

    .service-item ul {
        list-style: none;
        padding: 0;
    }

    .service-item li {
        padding: 0.5rem 0;
        color: #B0B0B0;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .service-item li::before {
        content: '✓';
        color: #00C2A0;
        font-weight: 700;
    }

    /* Benefits Section */
    .benefits-section {
        padding: 6rem 2rem;
        background: #000000;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .benefit-card {
        background: linear-gradient(135deg, rgba(0, 194, 160, 0.1), rgba(30, 115, 190, 0.05));
        border: 1px solid rgba(0, 194, 160, 0.2);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        border-color: rgba(0, 194, 160, 0.5);
        transform: translateY(-5px);
    }

    .benefit-card i {
        font-size: 3rem;
        background: linear-gradient(135deg, #00C2A0, #1E73BE);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .benefit-card h4 {
        color: #FFFFFF;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .benefit-card p {
        color: #B0B0B0;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 6rem 2rem;
        background: linear-gradient(180deg, #000000, rgba(0, 194, 160, 0.03));
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(15, 15, 15, 0.6));
        border: 1px solid rgba(0, 194, 160, 0.2);
        border-radius: 16px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item.active {
        border-color: #00C2A0;
    }

    .faq-question {
        padding: 1.5rem 2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        user-select: none;
    }

    .faq-question h4 {
        color: #FFFFFF;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .faq-toggle {
        color: #00C2A0;
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-toggle {
        transform: rotate(180deg);
    }

    .faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transition: grid-template-rows 0.4s ease;
    }

    .faq-item.active .faq-answer {
        grid-template-rows: 1fr;
    }

    .faq-answer-content {
        min-height: 0;
        padding: 0 2rem;
        color: #B0B0B0;
        line-height: 1.8;
    }

    .faq-item.active .faq-answer-content {
        padding: 0 2rem 1.5rem 2rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, rgba(0, 194, 160, 0.1), rgba(30, 115, 190, 0.05));
        position: relative;
        overflow: hidden;
    }

    .cta-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .cta-container h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1.5rem;
    }

    .cta-container p {
        font-size: 1.2rem;
        color: #B0B0B0;
        margin-bottom: 2.5rem;
        line-height: 1.8;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .service-hero {
            padding: 6rem 1.5rem 3rem;
        }

        .service-hero h1 {
            font-size: 2.5rem;
        }

        .service-hero p {
            font-size: 1.1rem;
        }

        .hero-cta {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            justify-content: center;
        }

        .section-title {
            font-size: 2rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .process-timeline::before {
            left: 15px;
        }

        .process-step {
            padding-left: 70px;
        }

        .process-number {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .cta-container h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 640px) {
        .breadcrumb {
            flex-wrap: wrap;
        }

        .tech-categories {
            grid-template-columns: 1fr;
        }
    }