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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

.header-asymmetric {
    padding: 1.5rem 5%;
    background-color: #ffffff;
    position: relative;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.logo-zone {
    flex: 1;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 1rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-offset {
    display: flex;
    gap: 2.5rem;
    padding-left: 8%;
}

.nav-offset a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-offset a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding: 8% 5% 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 55%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.hero-visual-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-left: -5%;
}

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

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

.intro-narrow {
    flex: 1.5;
    padding-left: 8%;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.intro-stat-card {
    flex: 1;
    background-color: #f8f8f8;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    margin-top: 4rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #0066cc;
    display: block;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.problem-irregular {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background-color: #fafafa;
}

.problem-image-left {
    flex: 1;
    margin-right: -3%;
}

.problem-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.problem-text-right {
    flex: 1.2;
    padding: 2rem 5% 2rem 3rem;
}

.problem-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.problem-text-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.link-arrow {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #0052a3;
    transform: translateX(5px);
}

.solution-stacked {
    padding: 7rem 5%;
}

.solution-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.solution-header-center h2 {
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 0 3%;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-large {
    flex: 1 1 calc(60% - 2.5rem);
}

.service-medium {
    flex: 1 1 calc(50% - 2.5rem);
}

.service-small {
    flex: 1 1 calc(40% - 2.5rem);
}

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

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

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-service {
    margin: 1.5rem;
    padding: 0.9rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #0052a3;
}

.testimonial-diagonal {
    display: flex;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 6rem 5%;
}

.testimonial-content {
    flex: 1.3;
    padding: 3rem 5% 3rem 8%;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    border-left: 4px solid #0066cc;
    padding-left: 2rem;
}

.testimonial-content p {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: #aaaaaa;
}

.testimonial-image {
    flex: 1;
    margin-left: 3%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.form-section-offset {
    display: flex;
    padding: 7rem 5%;
    gap: 5rem;
    background-color: #f9f9f9;
}

.form-container {
    flex: 1.2;
    padding-left: 5%;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.form-side-image {
    flex: 1;
    margin-top: 6rem;
}

.form-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.insight-banner {
    padding: 4rem 8%;
    background-color: #f0f7ff;
}

.insight-wrapper {
    max-width: 900px;
}

.insight-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-wrapper p {
    font-size: 1.1rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.insight-wrapper a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.insight-wrapper a:hover {
    text-decoration: underline;
}

.about-preview-irregular {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
}

.about-text-offset {
    flex: 1;
    padding: 3rem 3% 3rem 8%;
}

.about-text-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text-offset p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.about-visual {
    flex: 1;
    margin-top: -3rem;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.footer-split {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 4rem 5% 2rem;
}

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-references {
    padding: 2rem 0;
    border-top: 1px solid #333;
    margin-bottom: 2rem;
}

.footer-references h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

.footer-references a {
    color: #6ba3d8;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid #333;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0052a3;
}

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

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

.page-hero-minimal {
    padding: 8rem 8% 4rem;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.story-section {
    display: flex;
    padding: 5rem 5%;
    gap: 5rem;
}

.story-column-left {
    flex: 1;
}

.story-image {
    width: 100%;
    height: 500px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.story-column-right {
    flex: 1;
    padding: 2rem 0;
}

.story-column-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-column-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.timeline-irregular {
    padding: 6rem 8%;
    background-color: #fafafa;
}

.timeline-irregular h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.timeline-left {
    justify-content: flex-start;
    padding-left: 5%;
}

.timeline-right {
    justify-content: flex-end;
    padding-right: 5%;
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    min-width: 120px;
}

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

.timeline-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.approach-offset {
    padding: 6rem 8%;
}

.approach-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

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

.approach-card {
    flex: 1 1 calc(50% - 2.5rem);
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.approach-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.values-diagonal {
    padding: 6rem 8%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.values-diagonal h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-item {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    line-height: 1.7;
}

.value-item strong {
    color: #0099ff;
}

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

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.services-detailed {
    padding: 5rem 5%;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 3rem 0;
}

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

.service-detail-left {
    flex: 1;
}

.service-detail-right {
    flex: 1;
}

.service-detail-image {
    width: 100%;
    height: 450px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.service-detail-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.service-detail-card h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.services-comparison {
    padding: 5rem 8%;
    background-color: #f9f9f9;
}

.services-comparison h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.comparison-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.comparison-card {
    flex: 1;
    max-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.comparison-card p {
    font-size: 1rem;
    color: #666;
}

.comparison-arrow {
    display: block;
    font-size: 2rem;
    color: #0066cc;
    margin-top: 1rem;
}

.comparison-note {
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.form-section-services {
    padding: 6rem 8%;
}

.contact-split {
    display: flex;
    padding: 5rem 5%;
    gap: 5rem;
}

.contact-info-left {
    flex: 1;
    padding-left: 5%;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-note {
    padding: 2rem;
    background-color: #f0f7ff;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-note p {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.contact-visual-right {
    flex: 1;
}

.contact-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-hours-banner {
    padding: 5rem 8%;
    background-color: #fafafa;
}

.contact-hours-banner h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-hero {
    display: flex;
    padding: 6rem 5%;
    gap: 5rem;
    min-height: 70vh;
}

.thanks-content {
    flex: 1.3;
    padding: 3rem 0 3rem 5%;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-service-info {
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-service-selected {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
    line-height: 1.6;
}

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

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.legal-page {
    padding: 5rem 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #3a3a3a;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-left {
        max-width: 100%;
        padding: 5% 5%;
    }

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

    .hero-visual-right {
        height: 400px;
        margin-left: 0;
    }

    .intro-offset,
    .problem-irregular,
    .testimonial-diagonal,
    .form-section-offset,
    .about-preview-irregular,
    .story-section,
    .contact-split,
    .thanks-hero,
    .service-detail-card {
        flex-direction: column;
        gap: 3rem;
    }

    .nav-offset {
        gap: 1.5rem;
        padding-left: 0;
    }

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

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

    .comparison-grid,
    .faq-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-hero-minimal h1 {
        font-size: 2.5rem;
    }

    .solution-header-center h2,
    .approach-wrapper h2,
    .values-diagonal h2 {
        font-size: 2.2rem;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 calc(50% - 2rem);
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}