body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
}
.site-logo {
    max-width: 80px;
    height: auto;
    border-radius: 50%;
}
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}
.content {
    padding: 40px 20px;
    text-align: center;
}
.content h2 {
    line-height: 2.2;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}
.card {
    background: #fef210;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}
.card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #026222;
    color: white;
}
.service-card {
    background-color: #7f7f7f19;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: left;
}
.service-icon {
    background-color: #026222;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    font-size: 22px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.navbar-custom {
    background-color: #026222;
}
.language-switch {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 11px;
}
.language-switch a {
    color: #b8b8b8;
    margin-left: 10px;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width: 768px) {
    .content {
        padding: 20px 10px;
    }
    .service-card {
        padding: 20px 10px;
    }
    .hero {
        height: 40vh;
    }
    .hero-overlay {
        padding: 10px;
    }
    .navbar-custom {
        padding: 10px 0;
    }
    .language-switch {
        top: 5px;
        right: 10px;
    }
}
.row > [class*='col-'] {
    margin-bottom: 20px;
}
