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

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

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

/* Header Styles */
.site-header {
    background-color: #000;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.cta-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-logo {
    max-width: 500px;
    width: 90%;
    height: auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-sign,
.about-survey {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.about-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05em;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #fff;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
}

.map-description {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
}

.contact p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    margin-top: 30px;
}

.button-primary {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.button-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.site-footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero {
        margin-top: 150px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2,
    .map-section h2,
    .contact h2 {
        font-size: 2em;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .about,
    .map-section,
    .contact {
        padding: 60px 0;
    }
    
    .about-content h2,
    .map-section h2,
    .contact h2 {
        font-size: 1.75em;
    }
    
    .about-content p,
    .about-content li {
        font-size: 1em;
    }
}