* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

header {
    background-color: #2c5f41;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 300;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.hero-section {
    margin-bottom: 3rem;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.hero-overlay h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.content-wrapper {
    padding: 0 1rem;
}

.intro-section {
    margin-bottom: 3rem;
}

.intro-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.intro-card h2 {
    color: #2c5f41;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.intro-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

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

.renovations-section h2 {
    color: #2c5f41;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

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

.renovations-column h3 {
    color: #2c5f41;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.renovations-column ul {
    list-style: none;
    padding: 0;
}

.renovations-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.renovations-column li:last-child {
    border-bottom: none;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card, .contact-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card h2, .contact-card h2 {
    color: #2c5f41;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #2c5f41;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.documents-section h2 {
    color: #2c5f41;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.documents-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

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

.documents-table th {
    background-color: #2c5f41;
    color: white;
    font-weight: 600;
}

.documents-table tbody tr:hover {
    background-color: #f8f9fa;
}

.no-documents {
    text-align: center;
    color: #666;
    font-style: italic;
}

footer {
    background-color: #2c5f41;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .hero-image {
        height: 50vh;
        min-height: 300px;
        border-radius: 0;
    }
    
    .hero-overlay h2 {
        font-size: 2rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .hero-overlay {
        padding: 2rem 1rem 1.5rem;
    }
    
    .info-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .renovations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .info-card, .contact-card, .documents-section, .intro-card, .renovations-section {
        padding: 1.5rem;
    }
    
    .documents-table {
        font-size: 0.9rem;
    }
    
    .documents-table th,
    .documents-table td {
        padding: 0.75rem 0.5rem;
    }
}