.success-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.success-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.success-section .subtitle {
    max-width: 750px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    text-align: left;
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}