/* Front page about, support, CTA sections */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.highlight-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-box {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.highlight-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateX(10px);
}

.h-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.highlight-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.highlight-box p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
}

.section-support {
    background: var(--primary-color);
    color: #fff;
    padding: 5rem 0;
}

.support-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.support-text h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: left;
    margin-bottom: 0.5rem;
}

.support-text p {
    font-size: 1.2rem;
    opacity: 0.8;
    text-align: left;
    margin: 0;
}

.support-actions {
    display: flex;
    gap: 1rem;
}

.cta-button {
    border-radius: 8px;
    padding: 1rem 2rem;
}

.support-phone-button {
    border-radius: 8px;
    padding: 1rem 1.6rem;
    background: #ffcf33;
    color: #07182c;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.support-phone-button:hover,
.support-phone-button:focus {
    background: #ffffff;
    color: var(--primary-color);
}

.section-cta {
    padding: 8rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    padding: 5rem 3rem;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.cta-card h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-card p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.button-accent {
    background: var(--accent-color);
}

.button-white {
    background: #fff;
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .support-inner {
        flex-direction: column;
        text-align: center;
    }

    .support-text h2,
    .support-text p {
        text-align: center;
    }

    .support-actions {
        flex-direction: column;
        width: min(100%, 420px);
    }

    .support-actions .button {
        width: 100%;
        justify-content: center;
        white-space: nowrap;
    }
}
