.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-hero {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.about-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 400;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.about-section form{
    width: 100%;
}

.form-group input {
    width: 100%;
    box-sizing: border-box;
}

.contact-form-text{
    margin: 1rem 1rem;
    padding-right: 1.5rem;
    font-size: 13px;
}

.section-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.section-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.alert{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.alert-success{
    background-color: #c1ffa3;
}

.text-success{
    color: #005500;
}

.how-it-works {
    margin-bottom: 4rem;
}

.how-it-works h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 16px var(--shadow);
}

.step-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .about-hero h2 {
        font-size: 2.5rem;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .about-hero {
        padding: 2rem 1rem;
    }

    .about-hero h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 1.5rem;
    }

    .section-content h3 {
        font-size: 1.5rem;
    }

    .section-content p {
        font-size: 1rem;
    }
}
