/* About Page Styles */

.page-header {
    background: var(--gradient-dark);
    padding: 8rem 0 4rem;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.about-content {
    padding: 4rem 0;
    background: var(--white);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-section {
    margin-bottom: 4rem;
}

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

.about-section h2 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-red);
    display: inline-block;
}

/* Officers Table */
.officers-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.officers-table th,
.officers-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.officers-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--black);
    width: 25%;
}

.officers-table td:first-child {
    font-weight: 500;
    color: var(--primary-red);
    width: 20%;
}

.officers-table .name-cell {
    font-weight: 600;
    color: var(--black);
}

.officers-table .name-cell small {
    font-weight: 400;
    color: var(--medium-gray);
    display: block;
    margin-top: 0.25rem;
}

.officers-table .role-cell {
    color: var(--medium-gray);
}

.officers-note {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

/* Message Section */
.message-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.message-photo-section {
    text-align: center;
}

.message-photo-section img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-medium);
}

.message-photo-section h3 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.message-photo-section p {
    color: var(--primary-red);
    font-weight: 500;
}

.message-text-section h3 {
    font-size: 1.375rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.message-text-section p {
    color: var(--dark-gray);
    line-height: 2;
    margin-bottom: 1rem;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.info-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--black);
    width: 30%;
}

.info-table td {
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Activity Section */
.activity-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.activity-section h3 {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.activity-section p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.activity-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.activity-item {
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.activity-item::before {
    content: '📄';
}

.activity-item.coming-soon {
    opacity: 0.6;
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient-red);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-cta .btn {
    background: var(--white);
    color: var(--primary-red);
}

.contact-cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .message-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .message-text-section {
        text-align: left;
    }
    
    .officers-table th,
    .officers-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }
    
    .info-table th {
        border-bottom: none;
        padding-bottom: 0.5rem;
    }
    
    .info-table td {
        padding-top: 0.5rem;
    }
}
