body {
    font-family: Arial, sans-serif;
    margin: 0;

    background-image: url("background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: #263238;
    line-height: 1.6;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
max-width: 180px;
}

.language {

    position: fixed;

    top: 20px;
    right: 20px;

    background: rgba(255,255,255,0.9);

    padding: 10px 16px;

    border-radius: 999px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

    font-weight: bold;

    z-index: 1000;
}

.language a {

    text-decoration: none;

    color: #1B5E20;

    padding: 4px 8px;
}

.language a:hover {

    color: #2E7D32;
}

h1 {
color: #2E7D32;
}

h2 {
color: #1B5E20;
}

footer {
margin-top: 40px;
text-align: center;
font-size: 14px;
}

.hero {
    max-width: 1000px;
    margin: 40px auto 30px auto;

    background-image: url("facility.webp");

    background-size: cover;
    background-position: center;

    min-height: 500px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 12px;

    overflow: hidden;
}

.hero-overlay {

    width: 100%;

    min-height: 500px;

    background: rgba(0,0,0,0.25);

    color: white;

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 180px;
}

.notice {

    background: #f1f8e9;

    border-left: 6px solid #2E7D32;

    padding: 20px;

    margin: 30px 0;

    border-radius: 8px;
}

.gallery {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px,1fr));

    gap: 15px;

    margin-top: 30px;
}

.gallery img {

    width: 100%;

    border-radius: 10px;
}

.white-text-h1 {
  color: #fff;
}
