/**
 * domain.com - Financial Audit Company
 * Main stylesheet with animations and responsive design
 */

/* ----------------- */
/* --- VARIABLES --- */
/* ----------------- */

:root {
    /* Color Palette */
    --color-navy: #2E294E;
    --color-amber: #FFB400;
    --color-teal: #70C1B3;
    --color-raspberry: #E94F64;
    --color-white: #FAFAF8;
    --color-dark: #222222;
    --color-light-gray: #F5F5F5;
    --color-medium-gray: #E0E0E0;
    --color-gray: #888888;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Sizes */
    --header-height: 80px;
    --header-height-mobile: 60px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
}

/* --------------- */
/* --- RESETS  --- */
/* --------------- */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-navy);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-amber);
}

ul, ol {
    list-style-position: inside;
}

/* ------------------- */
/* --- TYPOGRAPHY  --- */
/* ------------------- */

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-navy);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
}

/* --------------- */
/* --- LAYOUT  --- */
/* --------------- */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-amber);
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Alternate section styling */
section:nth-child(even) {
    background-color: var(--color-light-gray);
}

/* Diagonal section dividers */
section:not(:first-child):before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: inherit;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ---------------- */
/* --- HEADER  --- */
/* ---------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: height var(--transition-normal);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-navy);
    text-transform: lowercase;
    letter-spacing: -1px;
}

.logo:hover {
    color: var(--color-amber);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.main-nav a:hover {
    background-color: rgba(46, 41, 78, 0.05);
}

.nav-cta {
    background-color: var(--color-amber);
    color: var(--color-navy) !important;
    padding: 8px 16px !important;
    border-radius: var(--border-radius-md);
    font-weight: 600;
}

.nav-cta:hover {
    background-color: var(--color-navy) !important;
    color: var(--color-white) !important;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-navy);
    transition: all var(--transition-fast);
}

/* -------------- */
/* --- HERO  --- */
/* -------------- */

.hero {
    background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
    color: var(--color-white);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--color-white);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--color-white);
    animation: fadeInDown 1s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--color-amber);
    color: var(--color-navy);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s 0.4s both;
}

.cta-button:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* -------------- */
/* --- ABOUT  --- */
/* -------------- */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform var(--transition-normal);
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-text ul {
    list-style-type: none;
    margin: 20px 0;
}

.about-text li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.about-text li:before {
    content: '✓';
    color: var(--color-teal);
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
}

/* ----------------- */
/* --- SERVICES  --- */
/* ----------------- */

.services {
    background-color: var(--color-navy);
    color: var(--color-white);
    position: relative;
}

.services .section-header h2 {
    color: var(--color-white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* -------------------- */
/* --- AUDIT TYPES  --- */
/* -------------------- */

.audit-types {
    background-color: var(--color-light-gray);
    padding-top: 0;
    margin-top: -50px;
}

.audit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.audit-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    top: 0;
}

.audit-card:hover {
    top: -10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.audit-icon {
    width: 100%;
    height: 200px;
    margin: 0 auto 20px;
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.audit-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.audit-card p {
    margin-bottom: 20px;
    color: var(--color-gray);
}

.audit-card ul {
    list-style-type: none;
    margin-bottom: 25px;
}

.audit-card li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.audit-card li:before {
    content: '•';
    color: var(--color-amber);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.audit-link {
    display: inline-block;
    padding: 8px 0;
    color: var(--color-teal);
    font-weight: 600;
    position: relative;
    transition: all var(--transition-fast);
}

.audit-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-teal);
    transition: width var(--transition-normal);
}

.audit-link:hover {
    color: var(--color-teal);
}

.audit-link:hover:after {
    width: 100%;
}

/* ----------------- */
/* --- BENEFITS  --- */
/* ----------------- */

.benefits {
    background-color: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    background-color: var(--color-light-gray);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-item h3 {
    margin-bottom: 10px;
    color: var(--color-navy);
}

.benefit-item p {
    color: var(--color-gray);
}

/* -------------------- */
/* --- TESTIMONIALS --- */
/* -------------------- */

.testimonials {
    background-color: var(--color-navy);
}


.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-item {
    min-width: 100%;
    padding: 20px;
}

.testimonial-item blockquote {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    position: relative;
    margin-bottom: 30px;
}

.testimonial-item blockquote:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: -1;
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-item cite {
    font-style: normal;
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--color-amber);
}

.testimonial-controls {
    text-align: center;
    margin-top: 30px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active, .dot:hover {
    background-color: var(--color-amber);
}

/* CSS-only testimonial slider animation */
@keyframes testimonialSlide {
    0%, 25% {
        transform: translateX(0);
    }
    33%, 58% {
        transform: translateX(-100%);
    }
    66%, 91% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-track {
    animation: testimonialSlide 24s infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

/* -------------------- */
/* --- CONTACT FORM --- */
/* -------------------- */

.contact {
    background-color: var(--color-light-gray);
}

.form-errors {
    background-color: rgba(233, 79, 100, 0.1);
    border-left: 4px solid var(--color-raspberry);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--border-radius-sm);
}

.form-errors p {
    color: var(--color-raspberry);
    font-weight: 600;
    margin-bottom: 10px;
}

.form-errors ul {
    list-style-type: none;
}

.form-errors li {
    color: var(--color-raspberry);
    margin-bottom: 5px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(112, 193, 179, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.submit-button {
    background-color: var(--color-navy);
    color: var(--color-white);
    border: none;
    padding: 14px 30px;
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.submit-button:hover {
    background-color: var(--color-amber);
    color: var(--color-navy);
    transform: translateY(-2px);
}

/* ------------- */
/* --- FAQ  --- */
/* ------------- */

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-medium-gray);
}

.faq-question {
    display: block;
    padding: 20px 0;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.faq-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.faq-toggle:before,
.faq-toggle:after {
    content: '';
    position: absolute;
    background-color: var(--color-navy);
    transition: all var(--transition-fast);
}

.faq-toggle:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
}

.faq-toggle:after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
}

.faq-item.open .faq-toggle:after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    display: none;
}

/* -------------- */
/* --- FOOTER --- */
/* -------------- */

.site-footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p, 
.footer-col address {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

.footer-col address a {
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-amber);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ---------------------- */
/* --- COOKIE BANNER  --- */
/* ---------------------- */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner p {
    margin-bottom: 0;
    margin-right: 20px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-actions a {
    color: var(--color-white);
    text-decoration: underline;
}

#accept-cookies {
    background-color: var(--color-amber);
    color: var(--color-navy);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

#accept-cookies:hover {
    background-color: var(--color-white);
}

/* ------------------ */
/* --- THANK YOU  --- */
/* ------------------ */

.thank-you {
    padding: 150px 0 100px;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--color-teal);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--color-white);
}

.checkmark-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 30px auto;
}

.checkmark-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-teal);
    animation: scaleIn 0.5s ease-in-out;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 20px;
    transform: translate(-50%, -60%) rotate(-45deg);
    border-bottom: 4px solid var(--color-white);
    border-left: 4px solid var(--color-white);
}

.draw {
    animation: drawCheck 0.5s 0.2s forwards;
    opacity: 0;
}

.thank-you-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.primary-button, .secondary-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.primary-button {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.primary-button:hover {
    background-color: var(--color-amber);
    color: var(--color-navy);
    transform: translateY(-2px);
}

.secondary-button {
    background-color: var(--color-light-gray);
    color: var(--color-navy);
}

.secondary-button:hover {
    background-color: var(--color-medium-gray);
    transform: translateY(-2px);
}

/* ------------------ */
/* --- POLICY PAGE --- */
/* ------------------ */

.policy-page {
    padding: 150px 0 80px;
}

.policy-header {
    margin-bottom: 40px;
    text-align: center;
}

.policy-header h1 {
    margin-bottom: 10px;
}

.policy-header p {
    color: var(--color-gray);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    margin-bottom: 15px;
    color: var(--color-navy);
}

.policy-section h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.policy-section p {
    margin-bottom: 15px;
}

.policy-section ul, 
.policy-section ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-section address {
    font-style: normal;
    margin: 20px 0;
    padding: 20px;
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius-md);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--color-medium-gray);
}

.cookie-table th {
    background-color: var(--color-light-gray);
    font-weight: 600;
}

.policy-footer {
    text-align: center;
    margin-top: 40px;
}

.back-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-navy);
    color: var(--color-white);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.back-button:hover {
    background-color: var(--color-amber);
    color: var(--color-navy);
    transform: translateY(-2px);
}

/* ------------------- */
/* --- ANIMATIONS  --- */
/* ------------------- */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes drawCheck {
    from {
        width: 0;
        height: 0;
        opacity: 0;
    }
    to {
        width: 40px;
        height: 20px;
        opacity: 1;
    }
}

/* --------------------- */
/* --- MEDIA QUERIES --- */
/* --------------------- */

@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }
    
    .audit-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .site-header {
        height: var(--header-height-mobile);
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: var(--header-height-mobile);
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
        transition: height var(--transition-normal);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 1000;
    }
    
    .main-nav.menu-open {
        height: calc(100vh - var(--header-height-mobile));
        padding: 20px;
    }
    
    .main-nav a {
        width: 100%;
        padding: 15px 10px;
        border-bottom: 1px solid var(--color-light-gray);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .menu-open + .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-open + .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-open + .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .audit-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
}

/* Display noscript warning for users without JavaScript */
noscript {
    display: block;
    background-color: var(--color-raspberry);
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}
