body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #5bc2b4;
    color: white;
    padding: 40px 0;
    text-align: center;
}
header img {
    max-width: 150px;
}
header h1 {
    font-size: 2.8em;
    margin: 10px 0;
}
header p {
    font-size: 1.4em;
    font-weight: bold;
}

/* Navigation */
nav {
    background-color: #4ba097;
    text-align: center;
    padding: 15px 0;
}
nav a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-block;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}
section h2 {
    color: #5bc2b4;
    margin-bottom: 20px;
    font-size: 2.5em;
}
section p {
    font-size: 1.2em;
    line-height: 1.8;
}

/* Images */
.image-container {
    text-align: center;
}
.image-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Enhanced Goals Section */
.goals-list {
    padding-left: 20px;
    margin-top: 30px;
}
.goals-list li {
    margin-bottom: 25px;  
    line-height: 1.8;
    font-size: 1.1em;
}
.goals-list li strong {
    font-size: 1.2em;
    color: #5bc2b4;
}

/* Lithuania Section */
#lithuania {
    text-align: left;
}

/* Contact Section */
#contact {
    background-color: #eef7f6;
    text-align: left;
}

/* Footer */
footer {
    background-color: #4ba097;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
    nav a {
        display: block;
        padding: 10px 0;
        margin: 0;
        font-size: 1.2em;
    }

    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1.2em;
    }

    section h2 {
        font-size: 2em;
    }

    section p {
        font-size: 1.1em;
    }
}
