:root {
    --page: #ecebe5;
    --page-alt: #dfded6;
    --surface: #f9f8f3;
    --text: #171b18;
    --muted: #5c675e;
    --accent: #c8f23d;
    --accent-2: #345b42;
    --dark: #111511;
    --dark-2: #1c231d;
    --white: #ffffff;
    --line: rgba(20,25,24,.16);
    --shadow: 0 24px 70px rgba(8, 15, 14, .14);
    --display: Georgia, "Times New Roman", serif;
    --body: Arial, "Helvetica Neue", sans-serif;
    --radius: 0px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--page);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.72;
    overflow-x: hidden;
}

body::selection {
    background: var(--accent);
    color: var(--dark);
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.section-title,
.hero-title {
    color: var(--text);
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
}

p + p {
    margin-top: 1rem;
}

ul {
    list-style-position: inside;
}

.container {
    margin: 0 auto;
    max-width: 1240px;
    padding: 0 30px;
    width: 100%;
}

header,
.header,
.site-header,
#header {
    background: var(--page);
    border-bottom: 1px solid var(--line);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.navbar,
.navbar > .container {
    align-items: center;
    display: flex;
    min-height: 76px;
    width: 100%;
}

.navbar-brand {
    align-items: center;
    display: flex;
}

.logo {
    align-items: center;
    display: flex;
    font-size: 1.55rem;
}

.logo::before {
    background: var(--accent);
    content: "";
    height: 26px;
    margin-right: 12px;
    transform: skew(-10deg);
    width: 8px;
}

.navbar-menu {
    align-items: center;
    display: flex;
    gap: 24px;
    list-style: none;
    margin-left: auto;
}

.navbar-menu li {
    list-style: none;
}

.navbar-menu a,
.nav-link {
    color: var(--text);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .11em;
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
}

.navbar-menu a::after {
    background: var(--accent-2);
    bottom: 4px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
    width: 100%;
}

.navbar-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.burger-menu {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 44px;
    margin-left: auto;
    padding: 8px;
    width: 44px;
}

.burger-menu span {
    background: var(--text);
    display: block;
    height: 2px;
    margin: 6px 0;
    transition: 220ms ease;
    width: 27px;
}

main {
    display: block;
}

section,
.content-section,
.page-content,
.about-section,
.contacts-section,
.privacy-section,
.terms-section,
.legal-section {
    background: var(--page);
    color: var(--text);
    padding: 104px 0;
}

main > section:nth-of-type(even),
main > div > section:nth-of-type(even) {
    background: var(--page-alt);
}

.hero-section {
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 92vh;
    overflow: hidden;
    padding: 170px 0 78px;
    position: relative;
}

.hero-background {
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    display: flex;
    inset: 0;
    min-height: 92vh;
    padding: 170px 0 78px;
    position: absolute;
    width: 100%;
}

.hero-section::before,
.hero-background::before {
    background: linear-gradient(90deg, rgba(7, 11, 12, .9), rgba(7, 11, 12, .52) 58%, rgba(7, 11, 12, .14));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.hero-section .container,
.hero-background .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    margin: 0;
    max-width: 820px;
    position: relative;
    text-align: left;
}

.hero-content::before {
    color: var(--accent);
    content: "NOIR ARCADE · CASUAL GAMES";
    display: block;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .2em;
    margin-bottom: 24px;
}

.hero-title {
    color: var(--white);
    font-size: clamp(3.8rem, 7.4vw, 7.4rem);
    margin: 0;
    text-shadow: none;
}

.hero-subtitle,
.hero-description {
    color: rgba(255, 255, 255, .84);
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.75;
    margin: 28px 0 0;
    max-width: 720px;
    text-transform: none;
}

.hero-buttons,
.cta-buttons,
.btn-container,
.page-actions,
.privacy-actions,
.terms-actions,
.policy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: flex-start;
    margin-top: 34px;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-submit,
.btn-resource,
.btn-small,
button[type="submit"] {
    align-items: center;
    background: transparent;
    border: 1px solid var(--text);
    border-radius: var(--radius);
    box-shadow: none;
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    font-size: .69rem;
    font-weight: 900;
    justify-content: center;
    letter-spacing: .11em;
    min-height: 50px;
    padding: 13px 23px;
    text-transform: uppercase;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.btn:hover,
.btn-submit:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
}

.btn-primary,
.btn-submit,
button[type="submit"] {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.hero-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, .58);
    color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.section-title {
    font-size: clamp(2.55rem, 4.8vw, 4.7rem);
    margin: 0 auto 54px;
    max-width: 900px;
    text-align: center;
}

.section-title::before {
    color: var(--accent-2);
    content: "SELECTED EXPERIENCES";
    display: block;
    font-family: var(--body);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .2em;
    margin-bottom: 17px;
}

.section-subtitle,
.section-description,
.section-intro {
    color: var(--muted);
    font-size: 1rem;
    margin: -30px auto 50px;
    max-width: 760px;
    text-align: center;
}

.innovation-grid,
.portfolio-grid,
.events-grid,
.cases-grid,
.resources-grid,
.team-grid,
.instructors-grid,
.testimonials-grid,
.stories-grid,
.achievements-grid,
.accolades-grid,
.clients-grid,
.media-grid,
.workshops-grid,
.stats-grid,
.statistics-grid,
.mission-grid,
.mission-features,
.values-grid,
.info-grid,
.faq-grid,
.research-accordion,
.process-steps,
.clientele-grid,
.stats-widgets {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid,
.statistics-grid,
.stats-widgets,
.process-steps,
.clientele-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.innovation-card,
.portfolio-card,
.event-card,
.case-card,
.resource-card,
.team-card,
.team-member,
.instructor-card,
.testimonial-card,
.story-card,
.stat-card,
.stat-widget,
.achievement-card,
.achievement-item,
.accolade-item,
.client-card,
.media-card,
.workshop-card,
.workshop-item,
.info-card,
.detail-card,
.about-card,
.mission-card,
.value-item,
.process-step,
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
    color: var(--text);
    overflow: hidden;
    transition: box-shadow 260ms ease, transform 260ms ease;
}

.card:hover,
.feature-card:hover,
.innovation-card:hover,
.portfolio-card:hover,
.event-card:hover,
.case-card:hover,
.resource-card:hover,
.team-card:hover,
.team-member:hover,
.instructor-card:hover,
.testimonial-card:hover,
.story-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.card-content,
.event-content,
.testimonial-content,
.workshop-content,
.info-content,
.team-info,
.community-content,
.press-content,
.resource-content {
    padding: 28px;
}

.card h3,
.card-content h3,
.event-title,
.resource-title,
.team-name {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.card p,
.card-content p,
.event-description,
.case-description,
.resource-description,
.instructor-description,
.testimonial-text,
.story-text,
.team-bio,
.member-bio {
    color: var(--muted);
    font-size: .93rem;
}

.card-image,
.image-container,
.event-image,
.mission-image,
.team-photo,
.testimonial-image,
.press-image-container,
.workshop-image,
.gallery-item {
    overflow: hidden;
}

.card-image {
    aspect-ratio: 4 / 3;
}

.team-photo,
.testimonial-image {
    aspect-ratio: 1 / 1;
}

.card-image img,
.image-container img,
.event-image img,
.mission-image img,
.team-photo img,
.testimonial-image img,
.press-image-container img,
.workshop-image img,
.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 650ms ease;
    width: 100%;
}

.card:hover img,
.team-member:hover img,
.gallery-item:hover img {
    transform: scale(1.035);
}

.stat-card,
.stat-widget {
    min-height: 180px;
    padding: 28px;
    text-align: left;
}

.stat-number {
    color: var(--accent-2);
    font-family: var(--display);
    font-size: 3.55rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label,
.stat-description,
.event-date,
.instructor-specialty,
.team-role,
.member-role,
.role,
.progress-label,
.workshop-date,
.workshop-duration,
.workshop-level {
    color: var(--muted);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.progress-indicator {
    background: var(--page-alt);
    margin-top: 22px;
    min-height: 5px;
    position: relative;
}

.progress-bar {
    background: var(--accent-2);
    height: 5px;
    width: 0;
}

.progress-label {
    display: block;
    margin-top: 10px;
}

.gallery-grid,
.about-gallery,
.testimonials-gallery,
.press-gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-item,
.about-gallery > *,
.testimonials-gallery > *,
.press-gallery > * {
    grid-column: span 4;
    min-height: 310px;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5),
.about-gallery > *:nth-child(1),
.press-gallery > *:nth-child(1) {
    grid-column: span 8;
}

.mission-content,
.community-content,
.contact-wrapper,
.contact-content,
.contacts-content,
.contacts-content-main,
.about-content,
.about-grid,
.team-showcase,
.instructors-content {
    align-items: start;
    display: grid;
    gap: 54px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mission-text,
.community-description,
.about-intro {
    color: var(--muted);
}

.contact-info,
.contact-form-container,
.contact-form-wrapper,
.contact-form-section,
.content-wrapper,
.privacy-content,
.terms-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent-2);
    color: var(--text);
    padding: 38px;
}

.contact-info h2,
.contact-form-container h2,
.contact-form-wrapper h2,
.content-wrapper h2,
.privacy-content h2,
.terms-content h2,
.page-content h2 {
    color: var(--text);
    font-size: 2rem;
    margin: 28px 0 14px;
}

.contact-info h2:first-child,
.contact-form-container h2:first-child,
.contact-form-wrapper h2:first-child,
.content-wrapper h2:first-child,
.privacy-content h2:first-child,
.terms-content h2:first-child,
.page-content h2:first-child {
    margin-top: 0;
}

.content-wrapper p,
.privacy-content p,
.terms-content p,
.page-content p,
.content-wrapper li,
.privacy-content li,
.terms-content li,
.page-content li {
    color: var(--muted);
}

.content-wrapper ul,
.privacy-content ul,
.terms-content ul,
.page-content ul {
    margin: 16px 0;
}

.content-wrapper li,
.privacy-content li,
.terms-content li,
.page-content li {
    border-bottom: 1px solid var(--line);
    list-style: none;
    padding: 9px 0;
}

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

.form-group label,
.toggle-label {
    color: var(--text);
    display: block;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .11em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

input,
textarea,
select {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    color: var(--text);
    outline: none;
    padding: 13px 2px;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: var(--muted);
    opacity: .75;
}

input:focus,
textarea:focus,
select:focus {
    border-bottom-color: var(--accent-2);
}

.contact-item,
.contact-detail,
.contact-detail-item,
.info-item,
.hours-item {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    padding: 15px 0;
}

.contact-item strong,
.contact-detail strong,
.contact-detail-item strong,
.info-item strong {
    color: var(--text);
}

.map-container {
    margin-top: 36px;
    overflow: hidden;
}

.map-placeholder {
    height: 440px;
    overflow: hidden;
    position: relative;
}

.map-placeholder img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.map-placeholder::after {
    background: linear-gradient(0deg, rgba(8, 13, 13, .88), transparent 68%);
    content: "";
    inset: 0;
    position: absolute;
}

.map-placeholder span {
    bottom: 34px;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    left: 34px;
    line-height: 1.08;
    max-width: 670px;
    position: absolute;
    z-index: 2;
}

.page-header,
.about-hero,
.contacts-hero {
    background: var(--dark);
    color: var(--white);
    margin-top: 76px;
    padding: 110px 30px 72px;
    text-align: center;
}

.page-header h1,
.about-hero h1,
.contacts-hero h1 {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5.5rem);
}

.page-header p,
.about-hero p,
.contacts-hero p {
    color: rgba(255, 255, 255, .72);
}

.page-content,
.about-page,
.contacts-page,
.privacy-page,
.terms-page {
    padding-top: 76px;
}

.page-content .page-header,
.about-page .page-header,
.contacts-page .page-header,
.privacy-page .page-header,
.terms-page .page-header {
    margin-top: 0;
}

.about-section:first-child,
.contacts-section:first-child,
.privacy-section:first-child,
.terms-section:first-child,
.legal-section:first-child {
    padding-top: 150px;
}

.about-section:first-child > .container > .section-title,
.contacts-section:first-child > .container > .section-title,
.privacy-section:first-child > .container > .section-title,
.terms-section:first-child > .container > .section-title {
    color: var(--text);
}

.cta-section {
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.cta-section p {
    color: rgba(255, 255, 255, .72);
    margin: 18px auto 0;
    max-width: 700px;
}

.cta-section .cta-buttons {
    justify-content: center;
}

.accordion-item {
    background: var(--surface);
    border: 1px solid var(--line);
    margin-bottom: 10px;
}

.accordion-header {
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
    padding: 22px;
}

.accordion-content {
    color: var(--muted);
    padding: 0 22px 22px;
}

.events-carousel,
.slider-container {
    overflow: hidden;
    position: relative;
}

.carousel-wrapper,
.slider-track {
    display: flex;
    transition: transform 450ms ease;
}

.carousel-wrapper .event-card,
.slider-track > * {
    flex: 0 0 calc(33.333% - 15px);
    margin-right: 22px;
}

.carousel-btn,
.slider-btn {
    align-items: center;
    background: var(--dark);
    border: 0;
    color: var(--white);
    cursor: pointer;
    display: flex;
    font-size: 1.5rem;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.footer,
.site-footer,
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .68);
    padding: 72px 0 26px;
}

.footer-content,
.footer-grid {
    display: grid;
    gap: 46px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer h3,
.footer h4,
.site-footer h3,
.site-footer h4,
footer h3,
footer h4,
.footer-title,
.footer-heading {
    color: var(--white);
}

.footer-description,
.footer p,
.site-footer p,
footer p {
    color: rgba(255, 255, 255, .64);
}

.footer-links,
.quick-links {
    list-style: none;
}

.footer-links li,
.quick-links li {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    list-style: none;
    padding: 8px 0;
}

.footer-links a,
.quick-links a {
    color: rgba(255, 255, 255, .68);
    font-size: .85rem;
}

.footer-links a:hover,
.quick-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .45);
    font-size: .7rem;
    letter-spacing: .1em;
    margin-top: 46px;
    padding-top: 22px;
    text-align: center;
    text-transform: uppercase;
}

.success-page {
    align-items: center;
    background: var(--dark);
    display: flex;
    min-height: 100vh;
    padding: 130px 25px 70px;
}

.success-content,
.success-container {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .72);
    margin: 0 auto;
    max-width: 760px;
    padding: 64px;
    text-align: center;
}

.success-content h1,
.success-container h1 {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5rem);
}

.success-content p,
.success-container p {
    color: rgba(255, 255, 255, .72);
}

.success-icon {
    color: var(--accent);
}

[data-aos] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
}

[data-aos].is-visible {
    opacity: 1;
    transform: translateY(0);
}

#cookie-banner {
    align-items: center;
    background: var(--dark);
    bottom: 18px;
    box-shadow: var(--shadow);
    color: rgba(255, 255, 255, .76);
    display: flex;
    gap: 22px;
    justify-content: space-between;
    left: 50%;
    max-width: 960px;
    padding: 18px 22px;
    position: fixed;
    transform: translateX(-50%);
    width: calc(100% - 36px);
    z-index: 2000;
}

#cookie-banner p {
    color: rgba(255, 255, 255, .76);
    font-size: .82rem;
}

#cookie-banner div {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

#cookie-banner .btn-secondary {
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
}


.hero-content {
    border-left: 8px solid var(--accent);
    padding-left: 34px;
}

.innovation-grid,
.team-grid {
    grid-template-columns: 1.2fr .8fr 1fr;
}

.innovation-card,
.team-card,
.workshop-card {
    border-top: 5px solid var(--text);
}

.media-card,
.client-logo {
    filter: grayscale(1);
}










@media (max-width: 1020px) {
    .navbar-menu {
        gap: 13px;
    }

    .navbar-menu a {
        font-size: .58rem;
    }

    .innovation-grid,
    .portfolio-grid,
    .events-grid,
    .cases-grid,
    .resources-grid,
    .team-grid,
    .instructors-grid,
    .testimonials-grid,
    .stories-grid,
    .achievements-grid,
    .accolades-grid,
    .clients-grid,
    .media-grid,
    .workshops-grid,
    .stats-grid,
    .statistics-grid,
    .mission-grid,
    .mission-features,
    .values-grid,
    .info-grid,
    .faq-grid,
    .research-accordion,
    .process-steps,
    .clientele-grid,
    .stats-widgets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-content,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .container {
        padding: 0 18px;
    }

    .navbar,
    .navbar > .container {
        min-height: 68px;
    }

    .burger-menu {
        display: block;
    }

    .navbar-menu {
        align-items: stretch;
        background: var(--page);
        border-bottom: 1px solid var(--line);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 18px;
        position: absolute;
        top: 68px;
        width: 100%;
    }

    .navbar-menu.active,
    .navbar-menu.is-active {
        display: flex;
    }

    .navbar-menu a,
    .nav-link {
        border-bottom: 1px solid var(--line);
        color: var(--text);
        padding: 12px 0;
    }

    .burger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    section,
    .content-section,
    .page-content,
    .about-section,
    .contacts-section,
    .privacy-section,
    .terms-section,
    .legal-section {
        padding: 76px 0;
    }

    .hero-section,
    .hero-background {
        min-height: 820px;
        padding: 145px 0 58px;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .hero-content {
        border-left: 0;
        border-right: 0;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .innovation-grid,
    .portfolio-grid,
    .events-grid,
    .cases-grid,
    .resources-grid,
    .team-grid,
    .instructors-grid,
    .testimonials-grid,
    .stories-grid,
    .achievements-grid,
    .accolades-grid,
    .clients-grid,
    .media-grid,
    .workshops-grid,
    .stats-grid,
    .statistics-grid,
    .mission-grid,
    .mission-features,
    .values-grid,
    .info-grid,
    .faq-grid,
    .research-accordion,
    .process-steps,
    .clientele-grid,
    .stats-widgets {
        grid-template-columns: 1fr;
    }

    .mission-content,
    .community-content,
    .contact-wrapper,
    .contact-content,
    .contacts-content,
    .contacts-content-main,
    .about-content,
    .about-grid,
    .team-showcase,
    .instructors-content {
        grid-template-columns: 1fr;
    }

    .portfolio-grid > :nth-child(2),
    .instructors-grid > :nth-child(2) {
        transform: none;
    }

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5),
    .about-gallery > *,
    .about-gallery > *:nth-child(1),
    .testimonials-gallery > *,
    .press-gallery > *,
    .press-gallery > *:nth-child(1) {
        grid-column: span 12;
    }

    .footer-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .carousel-wrapper .event-card,
    .slider-track > * {
        flex-basis: 88%;
    }

    .contact-info,
    .contact-form-container,
    .contact-form-wrapper,
    .contact-form-section,
    .content-wrapper,
    .privacy-content,
    .terms-content,
    .success-content,
    .success-container {
        padding: 27px;
    }

    #cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .map-placeholder {
        height: 390px;
    }

    .map-placeholder span {
        bottom: 24px;
        left: 22px;
        right: 22px;
    }

    #cookie-banner div {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
