.page-header {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.process-steps {
    padding: 4rem 0;
    background: #fff;
}

.steps-intro {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: #1B8CFB;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(27, 140, 251, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1B8CFB;
    transition: all 0.3s;
}

.step-content:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(27, 140, 251, 0.2);
    transform: translateX(10px);
}

.step-content h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.step-content>p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-details ul {
    list-style: none;
    padding-left: 0;
}

.step-details li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.step-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1B8CFB;
    font-weight: bold;
}

.requirements {
    padding: 4rem 0;
    background: #f8f9fa;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.requirement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
}

.req-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.requirement-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.requirement-card p {
    color: #666;
    line-height: 1.6;
}

.faq {
    padding: 4rem 0;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 2rem auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 5px 15px rgba(27, 140, 251, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #1B8CFB;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.tips {
    padding: 4rem 0;
    background: #f8f9fa;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.tip-card:hover {
    border-color: #1B8CFB;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 0;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-box h2::after {
    background: #fff;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box .btn {
    background: #fff;
    color: #1B8CFB;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-box .btn:hover {
    background: #1B8CFB;
    color: #fff;
    border-color: #fff;
}

.cta-box .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-box .btn-secondary:hover {
    background: #fff;
    color: #1B8CFB;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .steps-container::before {
        display: none;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content {
        border-left: none;
        border-top: 4px solid #1B8CFB;
    }

    .step-content:hover {
        transform: none;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-box .btn {
        width: 100%;
    }
}