/* About Rebrand Page Specific Styles */

/* Override background colors for About page */
.about-rebrand .twocolumns {
    background-color: white;
}

.about-rebrand .twocolumns .wrap {
    background-color: white;
}

.about-rebrand .twocolumns .content {
    padding: 30px;
    background-color: white;
}

.about-rebrand .sidebar {
    background-color: #DEF5F2;
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: #DEF5F2;
    padding: 60px 0;
}

.contact-section h3 {
    margin-bottom: 30px;
    font-family: "CarnacBold", sans-serif;
    font-size: 1.75rem;
    color: #2B303A;
}

.contact-persons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
}

/* ===== Contact Person Card (Reusable) ===== */
.contact-person-card {
    display: flex;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.contact-person-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-person-photo {
    width: 180px;
    min-width: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-person-info {
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-person-name {
    font-family: "Carnac", "CarnacBold", sans-serif;
    font-size: 1.5rem;
    color: #2B303A;
    margin: 0 0 2px 0;
}

.contact-person-title {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    color: #54596f;
    margin: 0 0 6px 0;
}

.contact-person-email,
.contact-person-phone {
    font-family: "Roboto", sans-serif;
    font-size: 0.85rem;
    margin: 0 0 2px 0;
    display: block;
    line-height: 1.4;
}

.contact-person-email a,
.contact-person-phone a {
    color: #34937E;
    text-decoration: none;
}

.contact-person-email a:hover,
.contact-person-phone a:hover {
    text-decoration: underline;
}

.contact-person-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 6px;
    background-color: #2B303A;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    text-align: center;
    transition: background-color 0.3s ease;
    width: auto;
    max-width: 120px;
}

.contact-person-btn:hover {
    background-color: #34937E;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-persons-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-person-card {
        max-width: 400px;
    }
}

/* Banner button styling */
.banner-button {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.banner-button:hover {
    background-color: #00bab3;
    border-color: #00bab3;
    color: #fff;
}
