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

:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #d4a574;
    --light: #f5f5f0;
    --dark: #1a1a1a;
    --gray: #7f8c8d;
    --bg-fallback: #e8e4de;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 2rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent);
    color: var(--dark);
}

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background: white;
    color: var(--dark);
}

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1400px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

.ad-label {
    font-size: 0.8rem;
    color: var(--gray);
    padding: 0.4rem 1rem;
    background: var(--light);
    border-radius: 20px;
    margin-left: 1rem;
}

.hero-visual {
    margin-top: 6rem;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--bg-fallback);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-overlay p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 600px;
    line-height: 1.6;
}

.intro-flow {
    padding: 8rem 2rem;
    background: white;
}

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

.content-narrow h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary);
}

.content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.story-visual {
    padding: 6rem 2rem;
    background: var(--light);
}

.split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.image-side {
    flex: 1;
    background-color: var(--bg-fallback);
}

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

.text-side {
    flex: 1;
}

.text-side h3 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.insight-block {
    padding: 8rem 2rem;
    background: var(--primary);
    color: white;
}

.insight-block h2 {
    color: white;
}

.insight-block p {
    color: rgba(255, 255, 255, 0.9);
}

.visual-grid {
    padding: 6rem 2rem;
    background: white;
}

.grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.grid-item {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-fallback);
}

.grid-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item.large {
    flex: 2;
    min-width: 500px;
}

.grid-item.large img {
    height: 600px;
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.grid-overlay h4 {
    font-size: 1.5rem;
}

.testimonial-inline {
    padding: 6rem 2rem;
    background: var(--accent);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote {
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.author {
    font-size: 1.1rem;
    color: var(--primary);
}

.benefits-reveal {
    padding: 8rem 2rem;
    background: white;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.content-wide h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: var(--primary);
}

.benefits-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--light);
    border-left: 4px solid var(--secondary);
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefit-card p {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.7;
}

.story-continuation {
    padding: 6rem 2rem;
    background: var(--light);
}

.story-continuation h3 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.visual-break {
    background-color: var(--bg-fallback);
}

.visual-break img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.pricing-reveal {
    padding: 8rem 2rem;
    background: white;
}

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

.content-centered h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--gray);
}

.service-selector {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-option {
    padding: 2.5rem;
    background: var(--light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.service-option.selected {
    border-color: var(--accent);
    background: #fdfcf8;
}

.service-option h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-option p {
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-option .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 1.5rem 0;
}

.select-service {
    padding: 0.9rem 2rem;
    background: var(--secondary);
    color: white;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--primary);
}

.service-option.selected .select-service {
    background: var(--accent);
    color: var(--dark);
}

.form-section {
    padding: 8rem 2rem;
    background: var(--light);
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f9f9f9;
    color: var(--gray);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary);
}

.final-trust {
    padding: 6rem 2rem;
    background: white;
}

.final-trust h3 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.disclaimer-block {
    padding: 3rem 2rem;
    background: #fff8f0;
    border-top: 3px solid var(--accent);
}

.disclaimer-block p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.main-footer {
    background: var(--primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    margin-top: 8rem;
    padding: 6rem 2rem;
    background: var(--primary);
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    padding: 6rem 2rem;
    background: white;
}

.content-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--dark);
    line-height: 1.7;
}

.image-block {
    flex: 1;
    background-color: var(--bg-fallback);
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: white;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.value-item p {
    color: var(--dark);
    line-height: 1.7;
}

.team-intro {
    padding: 6rem 2rem;
    background: white;
}

.team-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--primary);
}

.process-visual {
    padding: 6rem 2rem;
    background: var(--light);
}

.process-flow {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 280px;
    background: white;
    overflow: hidden;
}

.process-step img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--bg-fallback);
}

.process-step h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--primary);
}

.process-step p {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark);
    line-height: 1.6;
}

.philosophy-block {
    padding: 6rem 2rem;
    background: white;
}

.philosophy-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.services-main {
    padding: 6rem 2rem;
    background: white;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: var(--bg-fallback);
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.service-info > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.service-process {
    padding: 6rem 2rem;
    background: var(--light);
}

.process-timeline {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: white;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 60px;
}

.timeline-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: var(--primary);
}

.timeline-step p {
    color: var(--dark);
    line-height: 1.6;
}

.cta-services {
    padding: 6rem 2rem;
    background: var(--primary);
    text-align: center;
    color: white;
}

.cta-services h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: white;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.contact-main {
    padding: 6rem 2rem;
    background: white;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2.5rem;
    color: var(--primary);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.info-block p {
    color: var(--dark);
    line-height: 1.7;
}

.info-block .note {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-fallback);
}

.contact-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.visual-caption {
    padding: 1.5rem;
    background: var(--light);
}

.visual-caption p {
    color: var(--dark);
    line-height: 1.6;
}

.contact-approach {
    padding: 6rem 2rem;
    background: var(--light);
}

.contact-approach h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--primary);
}

.faq-section {
    padding: 6rem 2rem;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    color: var(--dark);
    line-height: 1.7;
}

.contact-cta {
    padding: 6rem 2rem;
    background: var(--primary);
    text-align: center;
}

.contact-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: white;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-hero {
    margin-top: 8rem;
    padding: 6rem 2rem;
    background: var(--light);
    text-align: center;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-content .lead {
    font-size: 1.4rem;
    color: var(--gray);
}

.thanks-details {
    padding: 6rem 2rem;
    background: white;
}

.thanks-details h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--primary);
}

.timeline-next {
    margin: 3rem 0;
}

.timeline-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-left: 4px solid var(--secondary);
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.timeline-item p {
    color: var(--dark);
    line-height: 1.6;
}

.note-text {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff8f0;
    border: 1px solid var(--accent);
    font-size: 0.95rem;
    color: var(--gray);
}

.thanks-explore {
    padding: 6rem 2rem;
    background: var(--light);
}

.thanks-explore h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.thanks-explore > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray);
}

.explore-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.explore-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.explore-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
}

.explore-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.explore-card p {
    color: var(--gray);
}

.legal-page {
    margin-top: 8rem;
    padding: 6rem 2rem;
    background: white;
}

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

.content-legal h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

.updated {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.content-legal h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.content-legal h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.content-legal p {
    margin-bottom: 1.2rem;
    color: var(--dark);
    line-height: 1.8;
}

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

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

.content-legal a {
    color: var(--secondary);
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .floating-nav {
        top: 1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-label {
        margin-left: 0;
    }

    .hero-visual {
        height: 70vh;
        margin-top: 10rem;
    }

    .split-content,
    .content-layout,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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

    .grid-item.large {
        min-width: 300px;
    }

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

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}