body {
    margin: 0;
    font-family: "Tahoma", sans-serif;
    background: #f3f3f3;
    color: #222;
}

/* Header */
header {
    background: linear-gradient(90deg, #0a7c63, #005b8e);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 60px;
}

/* Language Button */
#langBtn {
    padding: 8px 15px;
    background: white;
    color: #005b8e;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 70px;
    text-align: center;
    background: url('images/bg.jpg') center/cover no-repeat;
    color: white;
    text-shadow: 0 0 10px black;
    border-bottom: 5px solid #0a7c63;
}

/* Sections */
.section {
    background: white;
    margin: 40px auto;
    padding: 30px;
    width: 85%;
    border-radius: 12px;
    box-shadow: 0px 4px 25px #0002;
}

/* Titles */
h2 {
    text-align: center;
    color: #005b8e;
}

/* Services List */
.services-list li {
    background: #dff7ef;
    padding: 12px;
    margin: 8px;
    border-left: 5px solid #0a7c63;
    font-weight: bold;
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 4px 20px #0003;
}

/* Contact Links */
a {
    text-decoration: none;
    color: #005b8e;
    font-weight: bold;
}

/* Footer */
footer {
    background: #005b8e;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
