/* GLOBAL */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4fefe;
    color: #333;
}

/* HEADER */
header {
    background-color: #008080;
    color: white;
    padding: 20px;
    text-align: center;
}

header .logo {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

header h1 {
    margin: 5px 0;
    font-size: 28px;
}

nav {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 4px;
}

nav a:hover {
    background-color: rgba(255,255,255,0.15);
}

/* LANGUAGE BUTTON */
.lang-toggle {
    margin-top: 15px;
    background-color: #ffffff;
    color: #008080;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.lang-toggle:hover {
    background-color: #e0ffff;
}

/* MAIN SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service {
    background-color: white;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.service h2 {
    color: #008080;
    margin-bottom: 10px;
}

.service p {
    font-size: 15px;
    line-height: 1.6;
}

.service-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* CTA BUTTONS */
button.cta {
    background-color: #008080;
    color: white;
    border: none;
    padding: 14px;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s;
}

button.cta:hover {
    background-color: #006666;
    transform: scale(1.05);
}

/* FOOTER */
footer {
    background-color: #004c4c;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 14px;
    margin-top: 40px;
}

/* MOBILE */
@media (max-width: 600px) {
    header h1 {
        font-size: 22px;
    }

    nav a {
        font-size: 14px;
        padding: 5px 8px;
    }

    .service {
        padding: 15px;
    }

    .service h2 {
        font-size: 18px;
    }

    .service p {
        font-size: 14px;
    }

    button.cta {
        font-size: 15px;
        padding: 12px;
    }
}
/* PAGE CONTENT STYLING */
.page-content {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

.page-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

