* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #85858F;
    --accent-color: #E88538;
    --text-color: #333;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --tile-bg: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

/* Banner Slider Styles */
.banner-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.banner-slider .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slider .slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slider .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--primary-color);
    display: block;
}

.banner-slider .banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    z-index: 2;
}

.banner-slider .banner-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.banner-slider .banner-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.banner-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    color: var(--accent-color);
}

.banner-slider .slider-btn:hover {
    background-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.banner-slider .slider-btn.prev {
    left: 20px;
}

.banner-slider .slider-btn.next {
    right: 20px;
}

.banner-slider .slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
    stroke-width: 2.5;
}

.banner-slider .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.banner-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border: 2px solid transparent;
}

.banner-slider .dot:hover {
    transform: scale(1.3);
    background-color: rgba(255, 255, 255, 0.7);
}

.banner-slider .dot.active {
    background-color: var(--accent-color);
    border-color: var(--white);
    transform: scale(1.3);
}

/* Content Section */
.content-section {
    padding: 2rem 0 4rem;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-style: italic;
}

/* Metro Tile Grid */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tile {
    background-color: var(--tile-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.tile.large {
    grid-column: span 2;
}

.tile img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    background-color: var(--primary-color);
    display: block;
}

.tile-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tile-content h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tile-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.tile-content p:last-child {
    margin-bottom: 0;
}

/* Feature Blocks Section */
.feature-blocks {
    padding: 4rem 0;
    background-color: var(--white);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
    min-height: 500px;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.feature-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.feature-content p:last-of-type {
    margin-bottom: 0;
}

.feature-content .image-credit {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 2rem;
    opacity: 0.7;
}

/* Quote Section */
.quote-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: #1a1a1a;
}

.quote-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.quote-section .container {
    position: relative;
    z-index: 1;
}

.quote-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4rem;
    line-height: 1.2;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-column {
    color: var(--white);
}

.quote-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: rgba(255, 255, 255, 0.95);
}

.quote-column p:last-child {
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 5rem 0;
    margin-top: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-color);
    stroke-width: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Interactive Section */
.interactive-section {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.interactive-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.progress-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.progress-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--accent-color);
}

.progress-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.progress-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: var(--bg-color);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 6px;
    width: 0%;
    transition: width 1.5s ease-out;
}

.progress-description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    padding: 3rem 0;
    margin-top: 0;
}

.contact-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item .icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Contact Page Styles */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--bg-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 133, 56, 0.3);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-details .contact-item .icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details .contact-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details .contact-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Success Page Styles */
.success-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: var(--accent-color);
    background-color: rgba(232, 133, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--accent-color);
    stroke-width: 2.5;
}

.success-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.success-message {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.success-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 133, 56, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.footer-menu h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    white-space: nowrap;
}

.footer-menu a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright p {
    opacity: 0.9;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 133, 56, 0.4);
}

.cookie-btn.reject {
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.cookie-btn.reject:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-btn.settings {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-btn.settings:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Policy Content Styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
}

.policy-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.policy-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        width: 250px;
        padding: 1rem;
        box-shadow: 0 4px 10px var(--shadow);
        border-radius: 8px;
        display: none;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 0.75rem;
        border-radius: 4px;
        display: block;
    }

    .nav-menu a:hover {
        background-color: var(--bg-color);
    }

    .banner-slider {
        height: 300px;
    }

    .banner-slider .banner-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .banner-slider .banner-overlay h2 {
        font-size: 1.8rem;
    }

    .banner-slider .banner-overlay p {
        font-size: 1rem;
    }

    .banner-slider .slider-btn {
        width: 40px;
        height: 40px;
    }

    .banner-slider .slider-btn.prev {
        left: 10px;
    }

    .banner-slider .slider-btn.next {
        right: 10px;
    }

    .banner-slider .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .banner-slider .slider-dots {
        bottom: 15px;
        gap: 10px;
    }

    .banner-slider .dot {
        width: 10px;
        height: 10px;
    }

    .page-title h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .tile-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tile.large {
        grid-column: span 1;
    }

    .tile img {
        height: 200px;
    }

    .feature-blocks {
        padding: 2rem 0;
    }

    .feature-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feature-block.reverse {
        direction: ltr;
    }

    .feature-image {
        min-height: 300px;
        order: 1;
    }

    .feature-content {
        padding: 2rem 1.5rem;
        order: 2;
    }

    .feature-content h2 {
        font-size: 2rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .quote-section {
        padding: 3rem 0;
    }

    .quote-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .quote-column p {
        font-size: 1rem;
        text-align: left;
    }

    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .interactive-section {
        padding: 3rem 0;
    }

    .interactive-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .progress-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .progress-card {
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .success-message {
        font-size: 1.1rem;
    }

    .success-description {
        font-size: 1rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-menu ul {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .footer-menu a {
        font-size: 0.9rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.6rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .policy-content p,
    .policy-content ul {
        font-size: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .banner-slider {
        height: 250px;
    }

    .banner-slider .banner-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .banner-slider .banner-overlay h2 {
        font-size: 1.5rem;
    }

    .banner-slider .banner-overlay p {
        font-size: 0.9rem;
    }

    .banner-slider .slider-btn {
        width: 35px;
        height: 35px;
    }

    .banner-slider .slider-btn.prev {
        left: 5px;
    }

    .banner-slider .slider-btn.next {
        right: 5px;
    }

    .banner-slider .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .banner-slider .slider-dots {
        bottom: 10px;
        gap: 8px;
    }

    .banner-slider .dot {
        width: 8px;
        height: 8px;
    }

    .feature-blocks {
        padding: 1.5rem 0;
    }

    .feature-image {
        min-height: 250px;
    }

    .feature-content {
        padding: 1.5rem 1rem;
    }

    .feature-content h2 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-menu h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-menu ul {
        gap: 0.75rem;
        flex-direction: column;
    }

    .footer-menu a {
        font-size: 0.85rem;
    }

    .policy-content {
        padding: 1.5rem 1rem;
    }

    .policy-content h2 {
        font-size: 1.4rem;
    }

    .policy-content h3 {
        font-size: 1.1rem;
    }

    .policy-content p,
    .policy-content ul {
        font-size: 0.95rem;
    }

    .cookie-banner {
        padding: 1rem 0;
    }

    .cookie-content {
        gap: 1rem;
        padding: 0 15px;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .contact-page-grid {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .success-content h1 {
        font-size: 1.5rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon svg {
        width: 50px;
        height: 50px;
    }

    .quote-section {
        padding: 2rem 0;
    }

    .quote-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .quote-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .quote-column p {
        font-size: 0.9rem;
    }

    .stats-section {
        padding: 2rem 0;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .interactive-section {
        padding: 2rem 0;
    }

    .interactive-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .progress-header h3 {
        font-size: 1.1rem;
    }

    .progress-percent {
        font-size: 1.2rem;
    }

    .banner-overlay h2 {
        font-size: 1.5rem;
    }

    .banner-overlay p {
        font-size: 0.9rem;
    }

    .page-title h1 {
        font-size: 1.5rem;
    }

    .tile-content {
        padding: 1rem;
    }

    .tile-content h3 {
        font-size: 1.2rem;
    }

    .nav-menu {
        width: 100%;
        right: 0;
        left: 0;
    }
}

/* Icon Styles */
.icon {
    stroke: var(--accent-color);
    stroke-width: 2;
    fill: none;
}

