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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #2d5bff;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-md);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-right {
    display: flex;
    gap: var(--spacing-md);
}

.nav-right a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-right a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--secondary-color);
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-primary:hover,
.btn-primary:hover {
    background: #1a47d9;
    transform: translateY(-2px);
}

.cta-secondary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

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

.manifesto-split,
.story-split,
.team-split,
.approach-split,
.process-split,
.about-hero-split,
.services-hero-split,
.contact-hero-split,
.testimonials-split,
.thanks-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.manifesto-left,
.story-left,
.team-left,
.approach-left,
.process-left,
.about-hero-left,
.services-hero-left,
.contact-hero-left,
.testimonial-left,
.thanks-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.manifesto-left img,
.story-left img,
.team-left img,
.approach-left img,
.about-hero-left img,
.services-hero-left img,
.contact-hero-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manifesto-right,
.story-right,
.team-right,
.approach-right,
.process-right,
.about-hero-right,
.services-hero-right,
.contact-hero-right,
.testimonial-right,
.thanks-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.manifesto-right h2,
.story-right h2,
.team-right h2,
.approach-right h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.manifesto-right p,
.story-right p,
.team-right p,
.approach-right p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.value-strip {
    display: flex;
    justify-content: space-around;
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--primary-color);
    color: white;
}

.value-item {
    text-align: center;
}

.value-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.services-showcase {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--secondary-color);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.services-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - var(--spacing-md));
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-content {
    padding: var(--spacing-md);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

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

.btn-select {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
}

.btn-select:hover {
    background: var(--accent-color);
}

.btn-select.selected {
    background: var(--accent-color);
}

.form-split {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
    background: white;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--secondary-color);
}

.form-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.form-left p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
}

.form-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
}

.btn-submit:hover {
    background: #1a47d9;
}

.testimonials-split {
    background: var(--primary-color);
    color: white;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.8;
}

.process-split {
    background: var(--secondary-color);
}

.process-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.step {
    display: flex;
    gap: var(--spacing-md);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.cta-final,
.cta-about,
.cta-services,
.contact-cta {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    background: white;
}

.cta-final h2,
.cta-about h2,
.cta-services h2,
.contact-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.cta-final p,
.cta-about p,
.cta-services p,
.contact-cta p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.footer-split {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto var(--spacing-lg);
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
}

.sticky-cta {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(45, 91, 255, 0.4);
}

.sticky-btn:hover {
    background: #1a47d9;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-md);
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
}

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

.btn-accept:hover {
    background: #1a47d9;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.values-section,
.clients-section,
.process-timeline,
.next-steps {
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.values-section h2,
.clients-section h2,
.process-timeline h2,
.next-steps h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.value-block {
    flex: 1 1 calc(50% - var(--spacing-md));
    min-width: 280px;
    padding: var(--spacing-md);
    background: var(--secondary-color);
    border-radius: 8px;
}

.value-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.value-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
}

.client-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.service-detail-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

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

.service-detail-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.service-detail-right h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.service-detail-right h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.service-includes {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

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

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.contact-info-split {
    display: flex;
    min-height: 50vh;
    align-items: stretch;
}

.contact-info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--secondary-color);
}

.contact-info-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.detail-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.detail-block p,
.detail-block a {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

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

.map-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

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

.contact-approach {
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-approach h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.approach-item {
    flex: 1 1 calc(33.333% - var(--spacing-md));
    min-width: 280px;
    padding: var(--spacing-md);
    background: var(--secondary-color);
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

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

.thanks-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

.thanks-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.thanks-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.thanks-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1 1 calc(33.333% - var(--spacing-md));
    min-width: 280px;
    padding: var(--spacing-md);
    background: var(--secondary-color);
    border-radius: 8px;
}

.step-num {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.legal-page {
    padding: var(--spacing-xl) var(--spacing-md);
    min-height: 60vh;
}

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

.legal-container h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.legal-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.legal-container p {
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.legal-container ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.legal-container a:hover {
    color: #1a47d9;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

.cookie-table th,
.cookie-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--secondary-color);
    font-weight: 700;
}

.approach-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.detail-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 968px) {
    .hero-split,
    .manifesto-split,
    .story-split,
    .team-split,
    .approach-split,
    .process-split,
    .form-split,
    .testimonials-split,
    .about-hero-split,
    .services-hero-split,
    .contact-hero-split,
    .contact-info-split,
    .service-detail-split,
    .thanks-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .manifesto-left,
    .manifesto-right,
    .story-left,
    .story-right,
    .team-left,
    .team-right,
    .approach-left,
    .approach-right,
    .process-left,
    .process-right,
    .form-left,
    .form-right,
    .testimonial-left,
    .testimonial-right,
    .about-hero-left,
    .about-hero-right,
    .services-hero-left,
    .services-hero-right,
    .contact-hero-left,
    .contact-hero-right,
    .contact-info-left,
    .contact-info-right,
    .service-detail-left,
    .service-detail-right,
    .thanks-left,
    .thanks-right {
        min-height: 50vh;
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .nav-split {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .nav-right {
        gap: var(--spacing-sm);
    }

    .value-strip {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-xs: 0.25rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
    }

    .nav-right a {
        font-size: 0.9rem;
    }

    .sticky-cta {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
    }
}