body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background: #f8f9fa;
    line-height: 1.6;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.header {
    background: #005f73;
    color: #fff;
    padding: 20px 0;
}

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

.header-left h1 {
    font-size: 2.2em;
    margin: 0;
}

.header-right {
    text-align: right;
    font-size: 1em;
}

.hero {
    background: #0a9396;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero .hero-banner {
    margin: 20px auto;
    width: 80%;
    height: 200px;
    background: #e0e0e0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2em;
}

.about {
    padding: 50px 0;
}

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

.services {
    background: #f0f0f0;
    padding: 50px 0;
    text-align: center;
}

.service-list {
    display: flex;
    justify-content: space-between;
}

.service-item {
    width: 30%;
}

.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.map-placeholder img {
    width: 100%;
    border-radius: 10px;
}

.footer {
    background: #005f73;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: #94d2bd;
    text-decoration: none;
}