.content-page {
    padding: 48px 0;
    min-height: 60vh;
}

.content-hero {
    text-align: center;
    margin-bottom: 64px;
    padding: 48px 20px;
    background: linear-gradient(135deg, rgba(109, 184, 114, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 24px;
}

.content-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-hero .lead {
    font-size: 20px;
    color: var(--body-text);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #10B981 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--body-text);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step-card {
    position: relative;
    padding: 32px 24px;
    background: white;
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(109, 184, 114, 0.15);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -16px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #10B981 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(109, 184, 114, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(109, 184, 114, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.6;
}

.trust-section {
    background: var(--background);
    padding: 48px;
    border-radius: 24px;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-item svg {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.6;
}

.content-cta {
    text-align: center;
    padding: 64px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #10B981 100%);
    border-radius: 24px;
    color: white;
}

.content-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: white;
}

.content-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

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

    .content-hero .lead {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .trust-section {
        padding: 32px 20px;
    }

    .content-cta h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}