body {
    font-family: 'fleuronregular', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #d5e5bd;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    color: #2E8B57; 
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}
h2 {
    color: #72b043;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.button {       
    background-color: #2E8B57;    
    color: white;  
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 200px;
    box-sizing: border-box;
}     
.button:hover {
    background-color: #3A5A40;
}

.social_media_btn {
    max-width: 100px;
    font-size: 40px;
    padding: 10px;
    color: #2E8B57; /* #0a66c2; */
}
.social_media_btn:hover {
    color: #3A5A40;
}

section {
    margin-bottom: 2rem;
}

footer {
    text-align: center;
    margin-top: 3rem;
    color: #5D6D7E;
    font-size: 0.9rem;
}

a {
    color: #2E8B57;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.language-switcher {
    text-align: left;
    margin: 1rem 0;
}
.language-switcher select {
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #2E8B57;
    background-color: white;
    color: #2E8B57;
    font-family: 'fleuronregular', Arial, Helvetica, sans-serif;
    cursor: pointer;
}