/* About Page Styles */

.about-hero {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.about-hero h1 {
    color: #04552c;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.about-intro .brand-name {
    color: #d20000;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Contact card */

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.contact-info p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

.contact-info a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: #adb5bd;
    text-underline-offset: 2px;
}

.contact-info a:hover {
    color: #0056b3;
    text-decoration-color: #0056b3;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #04552c;
    color: white;
    border-radius: 8px;
    font-size: 1.25rem;
}

/* Accent Borders */

.accent-sections {
    max-width: 800px;
    margin: 0 auto;
}

.accent-section {
    border-left: 4px solid #04552c;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.accent-section p {
    line-height: 1.7;
    color: #333;
    margin-bottom: 0;
}

/* Responsive */

@media screen and (min-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1.15rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .accent-section {
        padding: 1.25rem 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media screen and (min-width: 992px) {
    .about-hero h1 {
        font-size: 2.25rem;
    }

    .about-intro {
        font-size: 1.2rem;
    }

    .accent-section p {
        font-size: 1.05rem;
    }
}
