/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #f8f8f8;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
}

.logo-container {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
}

.logo {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.9em;
}

.language-switcher a {
    color: #666;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    background-color: #eee;
}

.language-switcher a.active {
    color: #222;
    font-weight: bold;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #222;
}

header h2 {
    font-size: 1.2em;
    color: #666;
    font-weight: normal;
}

/* Main content styles */
main {
    padding: 40px 0;
}

section {
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #222;
}

h4 {
    font-size: 1.4em;
    margin: 20px 0 10px;
    color: #333;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

/* Contact section styles */
.contact {
    background-color: #f8f8f8;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.contact a {
    color: #0066cc;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive design */
@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }
    
    header h2 {
        font-size: 1em;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .language-switcher {
        position: static;
        margin-bottom: 20px;
    }
} 