html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

.page-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    box-sizing: border-box;
}

.hamburger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

.hamburger-icon.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.contact-map-container {
    width: 90%;
    max-width: 500px;
    height: 200px;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #e0e0e0;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.active-nav-link {
    background-color: #374151;
    font-weight: 600;
    color: #ffffff;
}

.form-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.5rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.form-message.success {
    background-color: #10B981;
    color: white;
}

.form-message.error {
    background-color: #EF4444;
    color: white;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.image-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
}

.logo-img-desktop {
    max-height: 120px;
    width: auto;
}

.logo-img-mobile {
    height: 80px;
    width: auto;
}

.page-section > .container {
    position: relative;
    z-index: 20;
}

.wizard-step { animation: fadeIn 0.4s ease-in-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border-width: 0;
}

.article-page {
    overflow-y: auto;
    max-height: 100%;
}

#accept-cookies {
    white-space: normal;
    height: auto;
    min-height: 40px;
}