body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

.top-bar {
    background-color: white;
    padding: 10px 20px;
    border-top: 2px solid white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
}

.top-bar-text {
    text-align: right;
    font-size: 0.9em;
    color: #333;
}

.top-bar-text i {
    margin-right: 5px;
    color: #333;
}

.language-switch {
    margin-left: 15px;
}

.language-switch a {
    background-color: orange;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

.language-switch a:hover {
    background-color: darkorange;
}

.hero {
    background: url('images/main_image.jpg') center/cover no-repeat;
    height: 70vh;
}

.section {
    padding: 60px 20px;
}

.section p {
    font-size: 1em;
    line-height: 1.6;
    max-width: 900px;
    margin-left: 2cm;
    margin-right: auto;
    text-align: left;
}

.footer {
    background-color: #333;
    color: white;
    padding: 40px 20px 20px 20px;
    font-size: 0.9em;
}

.footer-columns {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: left;
}

.footer-column h3 {
    margin-top: 0;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #666;
    padding-top: 10px;
}

/* Responsive adaptation for mobile devices */
@media screen and (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .top-bar-left, .top-bar-text {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    .logo {
        height: 40px;
    }
    .hero {
        height: 50vh;
    }
    .section {
        padding: 30px 10px;
    }
    .section p {
        font-size: 0.95em;
        margin-left: 1cm;
        margin-right: 1cm;
        text-align: left;
    }
    .footer-columns {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        max-width: 90%;
        margin-bottom: 20px;
        text-align: center;
    }
    .language-switch {
        margin-top: 5px;
    }
}
