/* Brutalist Design with F-Shape Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #727A40;
    --accent-color: #E0C62A;
    --light-bg: #FDF1BC;
    --dark-text: #1a1a1a;
    --light-text: #333;
    --border-color: #000;
    --border-width: 1px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #fff;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.brutalist-header {
    background-color: var(--primary-color);
    border-bottom: var(--border-width) solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: var(--border-width) solid var(--border-color);
    padding: 10px 20px;
    background-color: var(--light-bg);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    margin-right: auto;
    transition: all 0.3s ease;
}

.site-title:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Navigation */
.main-nav {
    position: relative;
    margin-left: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: var(--accent-color);
    border: var(--border-width) solid var(--border-color);
    padding: 8px;
    cursor: pointer;
    gap: 4px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    display: block;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: var(--border-width) solid transparent;
    border-left: var(--border-width) solid var(--border-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--border-color);
}

.nav-menu li:first-child a {
    border-left: none;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    margin-bottom: 40px;
    border-bottom: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.banner-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #ccc;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 20px 20px;
    color: #fff;
}

.brutalist-heading {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 var(--primary-color);
}

.brutalist-text {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Fullwidth Layout */
.f-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
}

.main-content {
    min-width: 0;
}

/* Content Sections */
.content-section {
    padding: 40px 0;
}

.brutalist-article {
    background-color: var(--light-bg);
    padding: 30px;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.brutalist-article:hover {
    box-shadow: var(--shadow-lg);
}

.brutalist-article h2 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: var(--border-width) solid var(--border-color);
    padding-bottom: 10px;
}

.brutalist-article h3 {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 30px 0 15px;
    text-transform: uppercase;
}

.brutalist-article p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
}

.image-block {
    margin: 30px 0;
    border: var(--border-width) solid var(--border-color);
    overflow: hidden;
    background-color: #ccc;
    box-shadow: var(--shadow-sm);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.image-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 300px;
    background-color: #ccc;
}

/* Sidebar */
.sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sidebar-block {
    background-color: var(--primary-color);
    padding: 20px;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sidebar-block:hover {
    box-shadow: var(--shadow-md);
}

.sidebar-block h3 {
    color: var(--accent-color);
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: var(--border-width) solid var(--border-color);
    padding-bottom: 8px;
}

.sidebar-block p {
    color: var(--light-bg);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.sidebar-block strong {
    color: var(--accent-color);
}

.map-container {
    border: var(--border-width) solid var(--border-color);
    overflow: hidden;
    background-color: #ccc;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Features Section */
.features-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    border-top: var(--border-width) solid var(--border-color);
    border-bottom: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 30px;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border: var(--border-width) solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.linear-icon {
    width: 50px;
    height: 50px;
    stroke: var(--accent-color);
    stroke-width: 2.5;
    fill: none;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    padding: 80px 0;
    border-top: var(--border-width) solid var(--border-color);
    border-bottom: var(--border-width) solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 30px;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: var(--border-width) solid var(--border-color);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6233 100%);
    padding: 80px 0;
    border-top: var(--border-width) solid var(--border-color);
    border-bottom: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--light-bg);
    margin-bottom: 40px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light-bg);
    font-size: 16px;
    font-weight: 600;
}

.cta-icon {
    width: 20px;
    height: 20px;
    stroke: var(--accent-color);
    stroke-width: 3;
    flex-shrink: 0;
}

/* Success Page */
.success-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 40px;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.success-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--accent-color);
    stroke-width: 3;
}

.success-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.success-message {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 20px;
    font-weight: 600;
}

.success-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 40px;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: var(--border-width) solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #5a6233;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--light-bg);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: #f0e8a0;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-section {
    padding: 80px 0;
    background-color: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--light-bg);
    padding: 30px;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.info-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: var(--border-width) solid var(--border-color);
    padding-bottom: 10px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
}

/* Header Contact Info */
.header-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: var(--border-width) solid rgba(224, 198, 42, 0.3);
}

.contact-info-header {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
}

.contact-icon {
    width: 18px;
    height: 18px;
    stroke: var(--accent-color);
    stroke-width: 2;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    margin-top: 40px;
    padding: 30px;
    background-color: #fff;
    border: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: 4px;
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: var(--border-width) solid var(--border-color);
    padding-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: var(--border-width) solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: var(--border-width) solid var(--border-color);
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #5a6233;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Footer */
.brutalist-footer {
    background-color: var(--primary-color);
    color: var(--light-bg);
    padding: 40px 0;
    border-top: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin: 10px 0;
    font-size: 16px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-menu,
.footer-policy-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.footer-menu a,
.footer-policy-menu a {
    color: var(--light-bg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 12px;
    border: var(--border-width) solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-menu a:hover,
.footer-policy-menu a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: rgba(224, 198, 42, 0.1);
}

.policy-list {
    margin: 20px 0;
    padding-left: 30px;
    line-height: 1.8;
}

.policy-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--light-text);
}

.policy-list ol {
    padding-left: 30px;
}

.policy-list a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-list a:hover {
    color: #5a6233;
}

.last-updated {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--light-bg);
    padding: 20px;
    border-top: var(--border-width) solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #f0e8a0;
}

.cookie-banner-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: var(--border-width) solid var(--border-color);
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.cookie-btn-accept:hover {
    background-color: #f0e8a0;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--light-bg);
    border-color: var(--light-bg);
}

.cookie-btn-decline:hover {
    background-color: rgba(253, 241, 188, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--light-bg);
    border-color: var(--light-bg);
}

.cookie-btn-settings:hover {
    background-color: rgba(253, 241, 188, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Mobile Responsive - 320px and up */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        align-items: stretch;
    }

    .site-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 15px;
        padding: 8px 15px;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-bottom: 15px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        border: var(--border-width) solid var(--border-color);
        background-color: var(--primary-color);
        box-shadow: var(--shadow-md);
        border-radius: 4px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        border-left: none;
        border-bottom: var(--border-width) solid var(--border-color);
        width: 100%;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .brutalist-heading {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .brutalist-text {
        font-size: 16px;
    }

    .banner-image {
        height: 250px;
    }

    .banner-content {
        padding: 20px 15px 15px;
    }

    .f-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brutalist-article {
        padding: 20px;
    }

    .brutalist-article h2 {
        font-size: 24px;
    }

    .brutalist-article h3 {
        font-size: 20px;
    }

    .brutalist-article p {
        font-size: 16px;
    }

    .image-block img {
        min-height: 200px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar-block {
        padding: 15px;
    }

    .map-container iframe {
        height: 250px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 18px;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .success-section {
        padding: 60px 0;
    }

    .success-content {
        padding: 40px 20px;
    }

    .success-title {
        font-size: 32px;
    }

    .success-message {
        font-size: 20px;
    }

    .success-description {
        font-size: 16px;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .info-section {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .header-contact {
        margin-top: 10px;
        padding-top: 10px;
    }

    .contact-info-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .contact-item {
        font-size: 12px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-form-wrapper h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    .brutalist-heading {
        font-size: 22px;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-text {
        font-size: 16px;
    }

    .success-section {
        padding: 40px 0;
    }

    .success-content {
        padding: 30px 15px;
    }

    .success-title {
        font-size: 28px;
    }

    .success-message {
        font-size: 18px;
    }

    .success-description {
        font-size: 14px;
    }

    .info-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 15px;
    }

    .contact-form-wrapper h3 {
        font-size: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .footer-menu,
    .footer-policy-menu {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .cookie-banner {
        padding: 15px;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-text p {
        font-size: 13px;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
        padding: 8px 15px;
        font-size: 12px;
    }

    .banner-image {
        height: 200px;
    }

    .brutalist-article h2 {
        font-size: 20px;
    }

    .brutalist-article h3 {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Minimum width support for 320px */
@media screen and (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .site-title {
        font-size: 14px;
        padding: 6px 10px;
    }

    .brutalist-heading {
        font-size: 18px;
    }

    .brutalist-text {
        font-size: 14px;
    }

    .banner-image {
        height: 180px;
    }

    .brutalist-article {
        padding: 15px;
    }

    .brutalist-article h2 {
        font-size: 18px;
    }

    .brutalist-article h3 {
        font-size: 16px;
    }

    .brutalist-article p {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .feature-card {
        padding: 15px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .linear-icon {
        width: 40px;
        height: 40px;
    }

    .testimonials-section {
        padding: 30px 0;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .cta-section {
        padding: 30px 0;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-text {
        font-size: 14px;
    }

    .success-section {
        padding: 30px 0;
    }

    .success-content {
        padding: 20px 10px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon svg {
        width: 50px;
        height: 50px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-message {
        font-size: 16px;
    }

    .success-description {
        font-size: 14px;
    }

    .info-section {
        padding: 30px 0;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h3 {
        font-size: 20px;
    }

    .contact-info-header {
        gap: 10px;
    }

    .contact-item {
        font-size: 11px;
    }

    .contact-icon {
        width: 16px;
        height: 16px;
    }

    .contact-form-wrapper {
        padding: 15px;
    }

    .contact-form-wrapper h3 {
        font-size: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }

    .btn-submit {
        width: 100%;
        padding: 12px 30px;
    }

    .footer-nav {
        gap: 15px;
    }

    .footer-menu,
    .footer-policy-menu {
        gap: 8px;
    }

    .footer-menu a,
    .footer-policy-menu a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner-text p {
        font-size: 12px;
    }

    .cookie-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

