/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header/Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.4;
}

.hero-email {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 12px 25px;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.hero-email:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: #e8f4fd;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #3498db;
    margin-bottom: 40px;
}

.disclaimer {
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    margin: 0;
}

/* Court Image Section */
.court-image-section {
    padding: 60px 0;
    background: white;
}

.court-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
}

/* Plan Section */
/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 600;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.contact-section h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.email-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 15px 30px;
    border: 2px solid #3498db;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

/* Footer */
footer {
    background: #1a252f;
    color: #bdc3c7;
    text-align: center;
    padding: 40px 0;
}

footer p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
}

.last-updated {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Privacy Page Styles */
.privacy-section {
    padding: 80px 0;
    background: white;
}

.privacy-content {
    max-width: 700px;
    margin: 0 auto;
}

.privacy-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.privacy-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

.back-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    background-color: #3498db;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .about-content p {
        font-size: 1.1rem;
        padding: 15px;
    }

    .mission-statement {
        font-size: 1.1rem;
        padding: 30px;
    }

    .property-list {
        padding: 30px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .mission-section,
    .plan-section,
    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .mission-statement {
        padding: 25px;
        font-size: 1rem;
    }
}