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

:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #10b981;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #000000;
    --muted: #6b7280;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.sticky-cta {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 999;
}

.sticky-cta__button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent);
    color: var(--background);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.nav {
    background-color: var(--background);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.nav__menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
    color: var(--accent);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--background);
    max-width: 900px;
    padding: 0 20px;
}

.hero__title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    min-height: 80px;
    border-right: 3px solid var(--accent);
    display: inline-block;
    padding-right: 8px;
    animation: typewriter 2s steps(20) 0.5s forwards, blink 0.75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typewriter {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 1s ease 2.5s forwards;
}

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

.hero__cta {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--accent);
    color: var(--background);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 2.8s forwards;
}

.hero__cta:hover {
    transform: scale(1.05);
}

.intro {
    padding: 100px 20px;
    background-color: var(--background);
}

.intro__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.intro__text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.intro__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.intro__image {
    width: 100%;
    height: auto;
    display: block;
}

.services {
    padding: 100px 20px;
    background-color: var(--surface);
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
}

.services__title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card__content {
    padding: 24px;
}

.service-card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card__text {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
}

.location {
    padding: 100px 20px;
    background-color: var(--background);
}

.location__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.location__text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location__detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location__label {
    font-weight: 600;
    color: var(--primary);
}

.location__value,
.location__link {
    color: var(--muted);
    text-decoration: none;
}

.location__link:hover {
    color: var(--accent);
}

.location__map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.cta-section__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-section__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 24px;
}

.cta-section__text {
    font-size: 18px;
    color: var(--surface);
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-section__button {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--accent);
    color: var(--background);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cta-section__button:hover {
    transform: scale(1.05);
}

.cta-section__image-wrap {
    border-radius: 12px;
    overflow: hidden;
}

.cta-section__image {
    width: 100%;
    height: auto;
    display: block;
}

.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--background);
    padding: 60px 20px 20px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer__newsletter-text {
    font-size: 16px;
    color: var(--surface);
    margin-bottom: 24px;
}

.footer__form {
    display: flex;
    gap: 12px;
}

.footer__input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
}

.footer__submit {
    padding: 12px 24px;
    background-color: var(--accent);
    color: var(--background);
    border: none;
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer__submit:hover {
    opacity: 0.9;
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer__links-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__link {
    color: var(--surface);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--accent);
}

.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    color: var(--surface);
}

.footer__contact {
    display: flex;
    gap: 20px;
    color: var(--surface);
}

.footer__contact a {
    color: var(--surface);
    text-decoration: none;
}

.footer__contact a:hover {
    color: var(--accent);
}

.page-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
}

.page-hero__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero__title {
    font-size: 56px;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 20px;
    color: var(--surface);
}

.about {
    padding: 100px 20px;
    background-color: var(--background);
}

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

.about__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.about__text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 40px;
}

.values {
    padding: 100px 20px;
    background-color: var(--surface);
}

.values__container {
    max-width: 1200px;
    margin: 0 auto;
}

.values__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    background-color: var(--background);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.value-card__text {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
}

.expertise {
    padding: 100px 20px;
    background-color: var(--background);
}

.expertise__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.expertise__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.expertise__text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.programs {
    padding: 80px 20px;
    background-color: var(--background);
}

.programs__container {
    max-width: 1200px;
    margin: 0 auto;
}

.program {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.program--reverse {
    direction: rtl;
}

.program--reverse > * {
    direction: ltr;
}

.program__image-wrap {
    border-radius: 12px;
    overflow: hidden;
}

.program__image {
    width: 100%;
    height: auto;
    display: block;
}

.program__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.program__text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.program__list {
    list-style: none;
    margin-bottom: 24px;
}

.program__list-item {
    font-size: 16px;
    color: var(--text);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.program__list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.program__details {
    display: flex;
    gap: 32px;
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
}

.custom-training {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    color: var(--background);
}

.custom-training__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.custom-training__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.custom-training__text {
    font-size: 18px;
    margin-bottom: 48px;
    line-height: 1.8;
}

.custom-training__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.custom-feature__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.custom-feature__text {
    font-size: 16px;
}

.custom-training__cta {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--background);
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.custom-training__cta:hover {
    transform: scale(1.05);
}

.faq {
    padding: 80px 20px;
    background-color: var(--background);
}

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

.faq__item {
    border-bottom: 1px solid var(--surface);
    margin-bottom: 16px;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: var(--accent);
}

.faq__icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding-bottom: 24px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
}

.contact-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    text-align: center;
}

.contact-cta__container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 24px;
}

.contact-cta__text {
    font-size: 18px;
    color: var(--surface);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-cta__button {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--accent);
    color: var(--background);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-cta__button:hover {
    transform: scale(1.05);
}

.contact {
    padding: 80px 20px;
    background-color: var(--background);
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact__info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.contact__info-text {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact__detail-value {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
}

.contact__detail-value a {
    color: var(--accent);
    text-decoration: none;
}

.contact__detail-value a:hover {
    text-decoration: underline;
}

.contact__form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid var(--surface);
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-input.error {
    border-color: #ef4444;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    padding: 16px 48px;
    background-color: var(--accent);
    color: var(--background);
    border: none;
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    opacity: 0.9;
}

.map {
    padding: 80px 20px;
    background-color: var(--surface);
}

.map__container {
    max-width: 1200px;
    margin: 0 auto;
}

.map__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.map__embed iframe {
    width: 100%;
    border-radius: 12px;
}

.legal {
    padding: 80px 20px;
    background-color: var(--background);
}

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

.legal__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal__updated {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 40px;
}

.legal__subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal__subheading {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary);
}

.legal__text {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal__text a {
    color: var(--accent);
    text-decoration: underline;
}

.thanks {
    padding: 120px 20px;
    background-color: var(--background);
    text-align: center;
}

.thanks__container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks__icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.thanks__text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.thanks__subtext {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 40px;
}

.thanks__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.thanks__button {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.thanks__button--primary {
    background-color: var(--accent);
    color: var(--background);
}

.thanks__button--secondary {
    background-color: var(--surface);
    color: var(--text);
}

.thanks__button:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary);
    color: var(--background);
    padding: 24px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-banner__text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
}

.cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
}

.cookie-banner__button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-banner__button--accept {
    background-color: var(--accent);
    color: var(--background);
}

.cookie-banner__button--decline {
    background-color: transparent;
    color: var(--background);
    border: 2px solid var(--background);
}

.cookie-banner__button:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__item {
        border-bottom: 1px solid var(--surface);
        padding: 12px 0;
    }

    .hero__title {
        font-size: 36px;
        white-space: normal;
        border: none;
        animation: none;
        min-height: auto;
        padding-right: 0;
    }

    .hero__subtitle {
        font-size: 16px;
        animation: none;
        opacity: 1;
    }

    .hero__cta {
        animation: none;
        opacity: 1;
    }

    .intro__container,
    .location__container,
    .cta-section__container,
    .expertise__container,
    .program,
    .contact__container {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .footer__main {
        grid-template-columns: 1fr;
    }

    .footer__form {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer__contact {
        flex-direction: column;
        gap: 8px;
    }

    .sticky-cta {
        right: 10px;
        top: auto;
        bottom: 20px;
    }

    .page-hero__title {
        font-size: 36px;
    }

    .custom-training__features {
        grid-template-columns: 1fr;
    }

    .thanks__title {
        font-size: 32px;
    }

    .thanks__actions {
        flex-direction: column;
    }

    .cookie-banner__container {
        flex-direction: column;
    }

    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner__button {
        width: 100%;
    }

    .values__grid {
        grid-template-columns: 1fr;
    }
}