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

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #007BFF;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

.cta-button {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

#services {
    padding: 50px 0;
    text-align: center;
}

#services h2, #contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1;
}

.card h3 {
    color: #007BFF;
}

#contact {
    background: #e9ecef;
    padding: 50px 0;
    text-align: center;
}

#contact form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
    gap: 15px;
}

#contact input, #contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact button {
    background: #007BFF;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #333;
    color: #fff;
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-switcher a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
    opacity: 0.6;
}

.language-switcher a.active {
    opacity: 1;
}
