
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

    .accordion {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
        margin-bottom: 25px;
    }

    .accordion-header {
        background: linear-gradient(120deg, #1e40af 0%, #2563eb 100%);
        color: white;
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.3rem;
        font-weight: 600;
        transition: background 0.3s ease;
    }

    .accordion-header:hover {
        background: linear-gradient(120deg, #1e3a8a 0%, #1d4ed8 100%);
    }

    .accordion-icon {
        transition: transform 0.3s ease;
    }

    .accordion.active .accordion-icon {
        transform: rotate(180deg);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .accordion.active .accordion-content {
        max-height: 100%;
    }

    .accordion-content-inner {
        padding: 25px;
    }

    .step-container {
        margin-bottom: 25px;
        padding: 20px;
        border-radius: 12px;
        background-color: #fff70231;
        border: 1px solid #e2e8f0;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .step-container:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
    }

    .step-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        background: linear-gradient(120deg, #1e40af 0%, #2563eb 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-left: 15px;
        flex-shrink: 0;
    }

    .step-title {
        font-weight: 600;
        color: #1e293b;
        font-size: 1.1rem;
    }

    .step-image {
        object-fit: contain;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        margin: 15px 0;
        border: 1px solid #cbd5e1;
        box-shadow: 0 4px 6px rgba(37, 99, 235, 0.05);
    }

    .step-description {
        line-height: 1.8;
        color: #334155;
        font-size: 1.5rem;
    }

    .faq-section {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
        margin-top: 30px;
    }

    .faq-section h2 {
        color: #1e40af;
        margin-bottom: 25px;
        font-size: 1.8rem;
        text-align: center;
        font-weight: 700;
    }

    .faq-item {
        margin-bottom: 25px;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 20px;
    }

    .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .faq-question {
        font-weight: 600;
        color: #2563eb;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .faq-answer {
        color: #475569;
        line-height: 1.8;
        font-size: 1rem;
    }

    @media (max-width: 768px) {
        h1 {
            font-size: 2rem;
        }
        
        .subtitle {
            font-size: 1rem;
        }
        
        .accordion-header {
            font-size: 1.1rem;
            padding: 18px 20px;
        }
        
    }