/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Color Variables */
:root {
    --primary-teal: #1a5f5f;
    --secondary-coral: #ff7f7f;
    --charcoal: #333333;
    --light-gray: #f8f9fa;
    --border-gray: #e9ecef;
    --text-gray: #6c757d;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin: 0;
}

.brand-name h1 a {
    color: var(--primary-teal);
    text-decoration: none;
}

.brand-name h1 a:hover {
    color: #2a7a7a;
}

.brand-name span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.page-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.content-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.last-updated {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.placeholder-content {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-coral);
}

.placeholder-content p {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.placeholder-content ul {
    color: var(--text-gray);
    padding-left: 1.5rem;
}

.placeholder-content li {
    margin-bottom: 0.5rem;
}

/* About Page Specific Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img,
.community-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-services {
    text-align: center;
}

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.highlight-item p {
    font-size: 0.95rem;
    margin: 0;
}

.about-community {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.mission-vision {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
}

.value-item h4 {
    margin: 1rem 0 0.5rem;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.value-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo div strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.footer-logo div p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-contact {
    text-align: left;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-coral);
}

.footer-section p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.footer-bottom {
    border-top: 1px solid #555555;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero,
    .about-community {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-stats {
        justify-content: center;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .content-section {
        padding: 1.25rem;
    }
    
    .placeholder-content {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}