/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
#header {
    background: #0F222D;
    color: white;
    padding: 80px 0;
    text-align: center;
}

#header h1 {
    font-size: 2.5em;
}

#header p {
    margin-top: 10px;
    font-size: 1.2em;
}

.cta-btn {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-btn:hover {
    background: #555;
}

/* Services Section */
#services {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

#services h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.service-box {
    padding: 20px;
    background: white;
    margin: 15px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    font-size: 1.5em;
    color: #0F222D;
}

.service-box p {
    font-size: 1em;
    color: #666;
}

/* About Section */
#about {
    padding: 50px 0;
    text-align: center;
}

#about h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Contact Section */
#contact {
    background: #0F222D;
    color: white;
    padding: 50px 0;
    text-align: center;
}

#contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

#contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

#contact-form label {
    display: block;
    margin-top: 10px;
    font-size: 1em;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

#contact-form button {
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    background: #333;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

#contact-form button:hover {
    background: #555;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.language-switcher button {
    background: #333;
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
}

.language-switcher button:hover {
    background: #555;
}

/* Company Logo */
.company-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}