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

:root {
    --color-primary: #2a4a6a;
    --color-secondary: #8a6a4a;
    --color-accent: #c4956a;
    --color-dark: #1a2a3a;
    --color-light: #f8f6f4;
    --color-text: #2a2a2a;
    --color-text-light: #5a5a5a;
    --color-border: #e0dcd8;
    --color-success: #2a6a4a;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: 400;
}

.logo a:hover {
    color: var(--color-primary);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.nav-list a {
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.ad-disclosure {
    background-color: var(--color-border);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: transform 0.3s ease;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.hero-split {
    display: flex;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #fff;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-section {
    background-color: var(--color-dark);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.features-split {
    display: flex;
    min-height: 50vh;
}

.features-split.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #fff;
}

.feature-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.services-preview {
    background-color: var(--color-light);
    padding: 5rem 2rem;
}

.services-preview-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 1.5rem;
}

.service-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.services-cta {
    text-align: center;
}

.testimonials-section {
    background-color: #fff;
    padding: 5rem 2rem;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.testimonial p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.cta-section {
    background-color: var(--color-primary);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-light);
}

.main-footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #fff;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

.page-hero {
    background-color: var(--color-dark);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.about-intro-split {
    display: flex;
    min-height: 50vh;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #fff;
}

.about-content p {
    color: var(--color-text-light);
}

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    background-color: var(--color-light);
    padding: 5rem 2rem;
}

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

.values-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.value-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.team-split {
    display: flex;
    min-height: 50vh;
}

.team-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #fff;
}

.team-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.team-highlights {
    list-style: none;
    padding: 0;
}

.team-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

.team-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.story-section {
    background-color: var(--color-dark);
    color: #fff;
    padding: 5rem 2rem;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-section h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.story-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-intro {
    background-color: #fff;
    padding: 3rem 2rem;
}

.services-intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.services-full {
    padding: 3rem 2rem;
}

.services-full-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    margin-bottom: 4rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

.service-price-block {
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
}

.price-unit {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-left: 0.5rem;
}

.booking-info {
    background-color: var(--color-light);
    padding: 4rem 2rem;
}

.booking-info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-info h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-grid {
    display: flex;
    gap: 2rem;
}

.booking-item {
    flex: 1;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.booking-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.booking-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.contact-split {
    display: flex;
    padding: 4rem 2rem;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    flex: 1.5;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42, 74, 106, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
}

.btn-submit {
    margin-top: 0.5rem;
    width: 100%;
}

.contact-info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-block {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-block h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-info-block p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.faq-section {
    background-color: var(--color-light);
    padding: 4rem 2rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
    background-color: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.thanks-service {
    padding: 1rem;
    background-color: var(--color-light);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.thanks-info {
    text-align: left;
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thanks-info ul {
    margin-bottom: 0;
}

.thanks-info li {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-content {
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-container h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p,
.legal-container li {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookies-table th {
    background-color: var(--color-light);
    font-weight: 600;
    color: var(--color-text);
}

.cookies-table td {
    color: var(--color-text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.65rem 1.25rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: var(--color-secondary);
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
    border-color: #fff;
}

.cookie-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-link:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .hero-split,
    .features-split,
    .about-intro-split,
    .team-split {
        flex-direction: column;
    }

    .features-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .feature-content,
    .about-content,
    .team-content {
        padding: 3rem 2rem;
    }

    .hero-image,
    .feature-image,
    .about-image,
    .team-image {
        min-height: 300px;
    }

    .services-grid {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .values-grid {
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .booking-grid {
        flex-direction: column;
    }

    .service-detail-split {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
    }

    .contact-split {
        flex-direction: column;
    }

    .footer-container {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 1rem;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        padding: 1rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-list a {
        display: block;
        padding: 1rem;
    }

    .ad-disclosure {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }
}
