* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #000000;
    --bg-color: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.disclaimer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    padding: 12px 20px;
    text-align: center;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1001;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.disclaimer-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.disclaimer-banner p {
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.main-header.show {
    transform: translateY(0);
    opacity: 1;
}

.main-header.show.has-disclaimer {
    top: 45px;
}

.disclaimer-banner.show + .main-header.show {
    top: 45px;
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 60px;
    position: relative;
    background-color: var(--bg-color);
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 80px;
    animation: fadeInLeft 1s ease-out;
    position: relative;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-address {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 13px;
    color: #333;
    letter-spacing: 0.3px;
    animation: fadeIn 1.2s ease-out;
    font-weight: 400;
    line-height: 1.5;
}

.hero-address p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-text {
    margin-top: 0;
    align-self: center;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.hero-text h1 .ampersand {
    font-style: normal;
    font-weight: 400;
    font-family: serif;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    animation: fadeInRight 1s ease-out;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    display: block;
}

.gallery-section {
    position: relative;
    min-height: 150vh;
    background-color: var(--bg-color);
    overflow: hidden;
    padding: 60px 0 0 0;
}

.gallery-background {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background-color: transparent;
    pointer-events: none;
}

.gallery-text {
    text-align: center;
    position: relative;
    z-index: 10;
}

.gallery-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 100px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -2px;
    line-height: 1;
}

.gallery-images-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 0 40px;
    pointer-events: none;
}

.gallery-image-wrapper {
    position: relative;
    width: 450px;
    height: 650px;
    will-change: transform;
    pointer-events: auto;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.gallery-image-wrapper {
    transition: opacity 0.3s ease;
}

.gallery-image-wrapper:nth-child(1) {
    transform: translateY(0);
    z-index: 3;
}

.gallery-image-wrapper:nth-child(2) {
    transform: translateY(0);
    z-index: 3;
}

.gallery-image-wrapper:nth-child(3) {
    transform: translateY(0);
    z-index: 3;
}

.features-section {
    padding: 0 0 0 0;
    background-color: #f5f5f5;
    position: relative;
    z-index: 10;
    width: 100%;
}

.features-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.feature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: var(--secondary-color);
    margin-bottom: 0;
    padding: 80px 100px;
    border-radius: 0;
    transition: var(--transition);
}

.feature-block:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    max-width: 50%;
    padding-right: 60px;
}

.feature-block:nth-child(even) .feature-content {
    padding-right: 0;
    padding-left: 60px;
}

.feature-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    line-height: 1.1;
    letter-spacing: -2px;
}

.feature-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    max-width: 500px;
}

.feature-image {
    flex: 1;
    max-width: 50%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-block:hover .feature-image img {
    transform: scale(1.05);
}

.legal-page {
    padding: 100px 40px;
    background-color: var(--bg-color);
    min-height: 80vh;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.legal-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
    color: #333;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-content a:hover {
    opacity: 0.7;
}

.legal-content strong {
    font-weight: 600;
    color: var(--primary-color);
}

.about-hero,
.contact-hero {
    padding: 120px 40px 80px;
    background-color: var(--bg-color);
    text-align: center;
}

.about-hero h1,
.contact-hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-subtitle,
.contact-subtitle {
    font-size: 24px;
    color: #666;
    font-weight: 400;
}

.about-content,
.contact-content {
    padding: 80px 40px;
    background-color: var(--bg-color);
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.about-section li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #333;
}

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

.value-item {
    padding: 30px;
    background-color: #fafafa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.contact-info {
    margin-top: 30px;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.contact-form-notice {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-form {
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-page {
    padding: 100px 40px;
    background-color: var(--bg-color);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.article-image-main {
    width: 100%;
    height: 500px;
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.article-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

.article-content table th,
.article-content table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
}

.article-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.article-checklist {
    margin: 10px 0 20px 20px;
    padding-left: 0;
}

.article-checklist li {
    margin-bottom: 6px;
}

.articles-hero {
    padding: 120px 40px 80px;
    background-color: var(--bg-color);
    text-align: center;
}

.articles-hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.articles-subtitle {
    font-size: 24px;
    color: #666;
    font-weight: 400;
}

.articles-list-section {
    display: none;
}

.articles-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.article-list-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.article-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-list-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.article-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.article-list-item:hover .article-list-image img {
    transform: scale(1.1);
}

.article-list-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-list-content .article-category {
    margin-bottom: 15px;
}

.article-list-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-list-content h2 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-list-content h2 a:hover {
    opacity: 0.7;
}

.article-list-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.article-list-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.article-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    align-self: flex-start;
}

.article-read-more:hover {
    opacity: 0.7;
    transform: translateX(5px);
}

.articles-section {
    padding: 40px 40px 60px;
    background-color: #fafafa;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    animation: fadeInUp 1s ease-out;
}

.article-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    animation: fadeInUp 1.2s ease-out;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 30px;
}

.article-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.article-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-content h3 a:hover {
    opacity: 0.7;
}

.article-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-section p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px 0;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    color: #999;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.footer-disclaimer strong {
    color: #bbb;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px 40px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background-color: #4a9eff;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
}

.btn-decline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #666;
}

.btn-decline:hover {
    background-color: #444;
    border-color: #888;
}

.btn-cfe-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cfe-link:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 158, 255, 0.3);
}

.btn-cfe-wrapper {
    text-align: center;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .btn-cfe-wrapper {
        margin: 25px 0;
    }
}

@media (max-width: 480px) {
    .btn-cfe-wrapper {
        margin: 20px 0;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .gallery-title {
        font-size: 80px;
    }

    .gallery-images-container {
        gap: 50px;
        padding: 0 30px;
    }

    .gallery-image-wrapper {
        width: 380px;
        height: 550px;
    }

    .gallery-image-wrapper:nth-child(2) {
        transform: translateY(0);
    }

    .gallery-image-wrapper:nth-child(3) {
        transform: translateY(0);
    }

    .feature-block {
        padding: 60px 50px;
    }

    .feature-title {
        font-size: 48px;
    }

    .feature-text {
        font-size: 16px;
    }

    .feature-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .main-header.show.has-disclaimer {
        top: 45px;
    }

    .disclaimer-banner.show + .main-header.show {
        top: 45px;
    }

    .main-nav {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
        z-index: 999;
    }

    .main-header.show .nav-menu {
        top: 70px;
    }

    .main-header.show.has-disclaimer .nav-menu,
    .disclaimer-banner.show + .main-header.show .nav-menu {
        top: 115px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-address {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .gallery-section {
        min-height: 120vh;
        padding: 40px 0 0 0;
    }

    .gallery-background {
        height: 70vh;
        min-height: 500px;
    }

    .gallery-title {
        font-size: 60px;
    }

    .gallery-label {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .gallery-images-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        align-items: center;
    }

    .gallery-image-wrapper {
        width: 100%;
        max-width: 350px;
        height: 500px;
    }

    .gallery-image-wrapper:nth-child(1),
    .gallery-image-wrapper:nth-child(2),
    .gallery-image-wrapper:nth-child(3) {
        transform: translateX(0) translateY(0);
    }

    .features-section {
        padding: 0;
    }

    .feature-block {
        flex-direction: column;
        padding: 40px 30px;
        margin-bottom: 0;
    }

    .feature-block:nth-child(even) {
        flex-direction: column;
    }

    .feature-content {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .feature-block:nth-child(even) .feature-content {
        padding-left: 0;
    }

    .feature-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .feature-text {
        font-size: 16px;
        max-width: 100%;
    }

    .feature-image {
        max-width: 100%;
        height: 300px;
        width: 100%;
    }

    .legal-page {
        padding: 60px 20px;
    }

    .legal-page h1 {
        font-size: 36px;
    }

    .legal-content h2 {
        font-size: 28px;
        margin-top: 40px;
    }

    .legal-content h3 {
        font-size: 20px;
        margin-top: 25px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 15px;
    }

    .about-hero,
    .contact-hero {
        padding: 80px 20px 60px;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .about-subtitle,
    .contact-subtitle {
        font-size: 18px;
    }

    .about-content,
    .contact-content {
        padding: 60px 20px;
    }

    .about-section h2 {
        font-size: 28px;
    }

    .about-section p,
    .about-section li {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .article-page {
        padding: 60px 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-image-main {
        height: 300px;
        margin-bottom: 30px;
    }

    .article-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .article-content h3 {
        font-size: 20px;
        margin-top: 25px;
    }

    .article-content p {
        font-size: 16px;
    }

    .article-content table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin: 20px 0;
    }

    .article-content table thead,
    .article-content table tbody {
        display: table;
        width: 100%;
        min-width: 600px;
    }

    .article-content table th,
    .article-content table td {
        padding: 8px 10px;
        white-space: nowrap;
    }

    .article-content table th {
        font-size: 12px;
    }

    .article-content table td {
        font-size: 12px;
    }

    .article-content ul,
    .article-content ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .article-content li {
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .article-content h4 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .btn-cfe-link {
        padding: 12px 24px;
        font-size: 14px;
        width: auto;
        max-width: 100%;
        display: inline-block;
        text-align: center;
    }

    .articles-hero {
        padding: 80px 20px 60px;
    }

    .articles-hero h1 {
        font-size: 36px;
    }

    .articles-subtitle {
        font-size: 18px;
    }

    .articles-list-section {
        padding: 60px 20px;
    }

    .article-list-item {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-list-image {
        width: 100%;
        height: 250px;
        min-height: 250px;
    }

    .article-list-content {
        padding: 30px 20px;
    }

    .article-list-content h2 {
        font-size: 24px;
    }

    .article-list-excerpt {
        font-size: 15px;
    }

    .articles-section {
        padding: 30px 20px 60px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-accept,
    .btn-decline {
        flex: 1;
        max-width: 200px;
    }
}

.article-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-prev,
.nav-next {
    flex: 1;
    min-width: 200px;
}

.nav-prev {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.nav-prev a,
.nav-next a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    line-height: 1.4;
}

.nav-prev a:hover,
.nav-next a:hover {
    color: #555;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-navigation {
        flex-direction: column;
    }

    .nav-prev,
    .nav-next {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .main-footer {
        padding: 40px 20px 15px;
    }

    .article-navigation {
        margin-top: 40px;
        padding-top: 20px;
    }

    .nav-prev a,
    .nav-next a {
        font-size: 14px;
    }

    .article-content table {
        font-size: 11px;
        margin: 15px 0;
    }

    .article-content table th,
    .article-content table td {
        padding: 6px 8px;
        font-size: 11px;
    }

    .article-content table th {
        font-size: 11px;
    }

    .article-page {
        padding: 50px 15px;
    }

    .article-container {
        max-width: 100%;
    }

    .main-nav {
        padding: 12px 15px;
    }

    .logo a {
        font-size: 20px;
    }

    .disclaimer-banner {
        padding: 10px 15px;
        font-size: 11px;
    }

    .cookie-consent {
        padding: 15px 20px;
    }

    .cookie-content p {
        font-size: 12px;
    }

    .btn-accept,
    .btn-decline {
        padding: 10px 20px;
        font-size: 12px;
    }

    .article-content h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .article-content h3 {
        font-size: 18px;
        margin-top: 20px;
    }

    .article-content h4 {
        font-size: 16px;
    }

    .article-header h1 {
        font-size: 28px;
    }

    .article-image-main {
        height: 250px;
        margin-bottom: 25px;
    }

    .btn-cfe-link {
        padding: 12px 20px;
        font-size: 13px;
        max-width: 100%;
        width: 100%;
        display: block;
    }

    .hero-section {
        padding: 30px 15px;
    }

    .hero-content {
        padding-right: 0;
    }

    .gallery-title {
        font-size: 48px;
    }

    .gallery-label {
        font-size: 11px;
    }

    .feature-title {
        font-size: 28px;
    }

    .feature-text {
        font-size: 15px;
    }

    .main-nav {
        padding: 10px 12px;
    }

    .footer-disclaimer p {
        font-size: 11px;
    }
}

@media (max-width: 320px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 16px;
    }

    .article-content h4 {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .gallery-title {
        font-size: 40px;
    }
}

