:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --primary-color: #005a9c;
    --secondary-color: #d32f2f;
    --link-color: #0044cc;
    --focus-outline: 3px solid #000000;
    --header-bg: #f4f4f4;
    --footer-bg: #222222;
    --footer-text: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    font-size: 1.125rem;
    top: 0 !important;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
    background-color: #000000 !important;
    color: #ffffff !important;
    outline: 3px solid #ffff00;
    outline-offset: 2px;
}

.skip-link:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

a {
    color: var(--link-color);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
    background-color: #f0f0f0;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

header,
nav,
main,
footer {
    display: block;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo {
    max-width: 150px;
    height: auto;
    display: block;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    display: inline-block;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #767676;
    border-radius: 4px;
    font-size: 1rem;
}

button,
.button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

button:hover,
.button:hover {
    background-color: #003d73;
    color: white;
}

button:focus,
.button:focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: #8cb4ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.content-block {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-color);
}

.contact-info-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

#language-selector {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: white;
    padding: 6px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

#lang-select {
    padding: 4px 8px;
    font-size: 0.9rem;
    border: 1px solid var(--text-color);
    border-radius: 4px;
    background-color: #f4f4f4;
    color: var(--text-color);
    font-weight: normal;
    cursor: pointer;
    margin: 0;
    line-height: 1.2;
}

#lang-select:focus {
    outline: 2px solid var(--primary-color);
    border-color: var(--primary-color);
}

.goog-te-banner-frame {
    display: none !important;
}