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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--accent-color);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
}

.nav-toggle span {
    display: block;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-visual {
    width: 58%;
    position: relative;
}

.hero-image-block {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-content-offset {
    width: 42%;
    padding: 8rem 5% 4rem 4rem;
    background: var(--bg-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.title-massive {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.subtitle-large {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.intro-offset {
    padding: 7rem 5%;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-left {
    width: 40%;
}

.intro-left h2 {
    font-size: 2.6rem;
    line-height: 1.2;
}

.intro-right {
    width: 60%;
    padding-top: 1.5rem;
}

.intro-right p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.problem-amplify {
    padding: 5rem 5%;
    background: var(--bg-light);
    display: flex;
    position: relative;
    min-height: 600px;
}

.problem-visual {
    width: 50%;
    position: relative;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-text-overlay {
    width: 50%;
    padding: 4rem 0 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-text-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.problem-text-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.cta-inline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    margin-top: 1rem;
}

.cta-inline:hover {
    color: #d35400;
    border-color: #d35400;
}

.insight-cards {
    padding: 7rem 5%;
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.card-insight {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    flex: 1;
    min-width: 280px;
}

.card-offset-1 {
    transform: translateY(30px);
}

.card-offset-2 {
    transform: translateY(-20px);
}

.card-offset-3 {
    transform: translateY(15px);
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.card-insight h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-insight p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    padding: 6rem 5%;
    background: var(--bg-cream);
}

.services-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 3rem;
}

.services-header-left {
    width: 60%;
}

.services-header-left h2 {
    margin-bottom: 1rem;
}

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

.services-header-right {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-outlined {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
}

.cta-outlined:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.service-block {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.block-large {
    flex: 2;
    min-width: 380px;
}

.block-medium {
    flex: 1.5;
    min-width: 320px;
}

.block-small {
    flex: 1;
    min-width: 280px;
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    margin-bottom: 1rem;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.trust-testimonials {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-featured {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.testimonial-featured blockquote {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.testimonial-featured cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.8;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-small {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.testimonial-small p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-small cite {
    font-style: normal;
    opacity: 0.8;
}

.cta-sticky-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 10%;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-intro h2 {
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.process-visual {
    padding: 7rem 5%;
}

.process-visual h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps-offset {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 1;
}

.step-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-text {
    flex: 1;
}

.step-text h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.urgency-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: var(--white);
}

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

.urgency-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-urgent {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-urgent:hover {
    background: #d35400;
    transform: scale(1.05);
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.6;
}

.about-hero {
    margin-top: 80px;
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.about-hero-content {
    flex: 1;
    padding: 5rem 5% 5rem 8%;
}

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

.subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-hero-image {
    flex: 1;
}

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

.about-story {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--bg-cream);
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-philosophy {
    padding: 6rem 5%;
}

.about-philosophy h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-team {
    padding: 6rem 5%;
    background: var(--bg-cream);
}

.about-team h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    max-width: 320px;
}

.member-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-cta {
    padding: 5rem 5%;
    text-align: center;
}

.about-cta h2 {
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-header {
    margin-top: 80px;
    padding: 5rem 5%;
    text-align: center;
    background: var(--bg-cream);
}

.services-header h1 {
    margin-bottom: 1rem;
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-full {
    padding: 4rem 5%;
}

.service-detailed {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.services-process {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.services-process h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-inquiry {
    padding: 6rem 5%;
    background: var(--bg-cream);
}

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

.inquiry-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.inquiry-container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-header {
    margin-top: 80px;
    padding: 5rem 5%;
    text-align: center;
    background: var(--bg-cream);
}

.contact-header h1 {
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--accent-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-cta {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-content {
    margin-top: 80px;
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-message {
    flex: 1.2;
}

.thanks-message h1 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-next h3 {
    margin-bottom: 1rem;
}

.thanks-next ol {
    margin-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.thanks-next li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-content {
    margin-top: 80px;
    padding: 5rem 10%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-update {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    h2 {
        font-size: 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 5%;
        box-shadow: var(--shadow);
        display: none;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-visual,
    .hero-content-offset {
        width: 100%;
    }

    .hero-content-offset {
        padding: 4rem 5%;
    }

    .title-massive {
        font-size: 2.8rem;
    }

    .intro-offset {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-left,
    .intro-right {
        width: 100%;
    }

    .problem-amplify {
        flex-direction: column;
    }

    .problem-visual,
    .problem-text-overlay {
        width: 100%;
    }

    .problem-text-overlay {
        padding: 3rem 5%;
    }

    .services-header-split {
        flex-direction: column;
    }

    .services-header-left,
    .services-header-right {
        width: 100%;
    }

    .services-header-right {
        justify-content: flex-start;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .process-step {
        flex-direction: column;
    }

    .process-step:nth-child(even) {
        flex-direction: column;
    }

    .about-hero {
        flex-direction: column;
    }

    .about-story {
        flex-direction: column;
    }

    .service-detailed,
    .service-reverse {
        flex-direction: column;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 568px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .title-massive {
        font-size: 2.2rem;
    }

    .cards-asymmetric {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3 {
        transform: none;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

    .legal-content {
        padding: 3rem 5%;
    }
}
