body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #1c1c1c;
}

.header {
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav ul li {
    margin-right: 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.language-selector {
    text-align: right;
    padding: 10px;
    background-color: #222;
    color: #fff;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
    height: 600px;
    background: url('images/background.webp') no-repeat center center/cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.btn {
    background-color: #f4c242;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #e3b22f;
}

.section {
    padding: 60px 20px;
    background-color: #111;
    text-align: center;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.portfolio-item {
    flex: 1 1 calc(33.333% - 40px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    background-color: #222;
    text-align: center;
}

.portfolio-item img {
    max-width: 100%;
    height: auto;
}

.portfolio-item p {
    margin-top: 10px;
}

blockquote {
    font-size: 1.5em;
    font-style: italic;
    color: #aaa;
    margin: 20px auto;
    max-width: 800px;
}

footer {
    background-color: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
}

footer .social-media {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

footer .social-media li {
    display: inline;
}

footer .social-media li a {
    color: #fff;
    text-decoration: none;
}

footer .social-media li img {
    width: 24px;
    height: 24px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
}

.contact-form button {
    background-color: #f4c242;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #e3b22f;
}
