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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    background: #2c3e50;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header h1 {
    font-size: 1.5rem;
    margin: 0;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.site-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #5a7a8c; /* fallback */
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
}



section {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

section h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services ul {
    list-style: disc inside;
    margin-top: 0.5rem;
}

.contact a {
    color: #2980b9;
    text-decoration: underline;
}

.site-footer {
    background: #5a7a8c;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

.about-grid h3 {
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .site-header, .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-nav ul {
        gap: 0.5rem;
    }
    .hero {
        padding: 2rem 1rem;
    }
}
