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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 6rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #0d1117;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.25rem;
    color: #57606a;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    min-height: 85vh;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.cta-primary:hover {
    background: #0052a3;
}

.cta-primary-large {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.cta-primary-large:hover {
    background: #0052a3;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #0066cc;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s;
    margin-left: 1rem;
}

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

.split-content {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

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

.content-left,
.content-right {
    flex: 1;
    padding: 2rem 4rem;
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-right h2,
.content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0d1117;
    line-height: 1.2;
}

.content-right p,
.content-left p {
    font-size: 1.1rem;
    color: #57606a;
    margin-bottom: 1.2rem;
}

.features-split {
    padding: 4rem 2rem;
    background: #f6f8fa;
}

.feature-block {
    display: flex;
    max-width: 1200px;
    margin: 3rem auto;
    align-items: center;
    gap: 3rem;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-visual,
.feature-text {
    flex: 1;
}

.feature-visual img {
    width: 100%;
    border-radius: 8px;
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0d1117;
}

.feature-text p {
    font-size: 1.1rem;
    color: #57606a;
}

.impact-section {
    display: flex;
    padding: 6rem 0;
    background: #ffffff;
}

.impact-left {
    flex: 1;
    padding: 3rem 5rem;
}

.impact-left h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: #0d1117;
}

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

.stat-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 180px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #57606a;
}

.impact-right {
    flex: 1;
    overflow: hidden;
}

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

.services-showcase {
    padding: 6rem 4rem;
    background: #f6f8fa;
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #0d1117;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #57606a;
    margin-bottom: 4rem;
}

.services-split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 450px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0d1117;
}

.service-info p {
    font-size: 1rem;
    color: #57606a;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.form-split-section {
    display: flex;
    min-height: 700px;
}

.form-left {
    flex: 1;
    padding: 4rem 5rem;
    background: #f6f8fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0d1117;
}

.form-left p {
    font-size: 1.1rem;
    color: #57606a;
    margin-bottom: 2rem;
}

.form-left img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    margin-top: 2rem;
}

.form-right {
    flex: 1;
    padding: 4rem 5rem;
    background: #ffffff;
    display: flex;
    align-items: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0d1117;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.trust-split {
    display: flex;
    padding: 6rem 0;
}

.trust-content {
    flex: 1;
    padding: 3rem 5rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #0d1117;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: #f6f8fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #57606a;
    font-weight: 600;
}

.trust-image {
    flex: 1;
    overflow: hidden;
}

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

.final-cta-split {
    display: flex;
    min-height: 500px;
}

.cta-visual {
    flex: 1;
    overflow: hidden;
}

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

.cta-content {
    flex: 1;
    padding: 4rem 5rem;
    background: #0d1117;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.1rem;
    color: #c9d1d9;
    margin-bottom: 2rem;
}

.main-footer {
    background: #0d1117;
    color: #c9d1d9;
    padding: 4rem 2rem 2rem;
}

.footer-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

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

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

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

.footer-section ul li a {
    color: #c9d1d9;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #58a6ff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d1117;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

#cookie-accept:hover {
    background: #0052a3;
}

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

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero-split .hero-left {
    flex: 1;
    padding: 4rem 6rem;
}

.page-hero-split .hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0d1117;
}

.page-hero-split .hero-left p {
    font-size: 1.2rem;
    color: #57606a;
}

.page-hero-split .hero-right {
    flex: 1;
    min-height: 60vh;
}

.values-split {
    padding: 5rem 4rem;
    background: #ffffff;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: 2.8rem;
    color: #0d1117;
}

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

.value-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.value-block.reverse {
    flex-direction: row-reverse;
}

.value-content,
.value-visual {
    flex: 1;
}

.value-visual img {
    width: 100%;
    border-radius: 8px;
}

.value-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0d1117;
}

.value-content p {
    font-size: 1.1rem;
    color: #57606a;
}

.journey-split {
    display: flex;
    min-height: 600px;
}

.journey-left {
    flex: 1;
    overflow: hidden;
}

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

.journey-right {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0d1117;
}

.journey-right p {
    font-size: 1.1rem;
    color: #57606a;
    margin-bottom: 1.2rem;
}

.services-detail-split {
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto;
    gap: 3rem;
    align-items: center;
}

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

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

.service-detail-left img {
    width: 100%;
    border-radius: 8px;
}

.service-detail-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #0d1117;
}

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

.service-detail-right p {
    font-size: 1.05rem;
    color: #57606a;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #1a1a1a;
}

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

.process-split {
    display: flex;
    padding: 6rem 4rem;
    background: #f6f8fa;
    gap: 4rem;
}

.process-left {
    flex: 1;
}

.process-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0d1117;
}

.process-left p {
    font-size: 1.1rem;
    color: #57606a;
}

.process-right {
    flex: 1.5;
}

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

.process-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.step-number {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: #0d1117;
}

.process-step p {
    font-size: 1rem;
    color: #57606a;
}

.cta-split-section {
    display: flex;
    padding: 6rem 0;
}

.cta-left {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0d1117;
}

.cta-left p {
    font-size: 1.1rem;
    color: #57606a;
    margin-bottom: 2rem;
}

.cta-right {
    flex: 1;
    overflow: hidden;
}

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

.contact-split-section {
    display: flex;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    padding: 4rem 5rem;
    background: #f6f8fa;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #0d1117;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #0d1117;
}

.contact-item p {
    font-size: 1.05rem;
    color: #57606a;
    line-height: 1.6;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
}

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

.contact-note {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.contact-note p {
    font-size: 1rem;
    color: #57606a;
}

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

.contact-visual-side {
    flex: 1;
    overflow: hidden;
}

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

.location-split {
    display: flex;
    padding: 5rem 0;
}

.location-left {
    flex: 1;
    overflow: hidden;
}

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

.location-right {
    flex: 1;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #0d1117;
}

.location-right p {
    font-size: 1.1rem;
    color: #57606a;
    margin-bottom: 1.2rem;
}

.faq-split {
    padding: 5rem 4rem;
    background: #f6f8fa;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.8rem;
    color: #0d1117;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0d1117;
}

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

.thanks-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.thanks-left {
    flex: 1;
    padding: 4rem 6rem;
}

.thanks-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0d1117;
}

.thanks-left > p {
    font-size: 1.2rem;
    color: #57606a;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #f6f8fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d1117;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 0.8rem 0;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.thanks-service-info {
    background: #e6f3ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #0066cc;
}

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

.thanks-right {
    flex: 1;
    min-height: 70vh;
    overflow: hidden;
}

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

.thanks-info-split {
    display: flex;
    padding: 4rem 0;
    background: #f6f8fa;
}

.info-left {
    flex: 1;
    padding: 3rem 5rem;
}

.info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #0d1117;
}

.info-left p {
    font-size: 1.1rem;
    color: #57606a;
    margin-bottom: 1.5rem;
}

.resource-links {
    list-style: none;
}

.resource-links li {
    margin-bottom: 1rem;
}

.resource-links a {
    color: #0066cc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.resource-links a:hover {
    text-decoration: underline;
}

.info-right {
    flex: 1;
    padding: 3rem;
}

.info-right img {
    width: 100%;
    border-radius: 8px;
}

.legal-page {
    padding: 4rem 2rem;
    background: #f6f8fa;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #0d1117;
}

.last-updated {
    color: #57606a;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0d1117;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #0d1117;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

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

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
}

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

.legal-container 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 #d0d7de;
}

.cookie-table th {
    background: #f6f8fa;
    font-weight: 600;
    color: #0d1117;
}

.cookie-table td {
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-content,
    .feature-block,
    .impact-section,
    .trust-split,
    .final-cta-split,
    .form-split-section,
    .page-hero-split,
    .value-block,
    .journey-split,
    .service-detail-card,
    .process-split,
    .cta-split-section,
    .contact-split-section,
    .location-split,
    .thanks-split,
    .thanks-info-split {
        flex-direction: column;
    }

    .split-content.reverse,
    .feature-block.reverse,
    .value-block.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-left,
    .content-left,
    .content-right,
    .form-left,
    .form-right,
    .trust-content,
    .cta-content,
    .journey-right,
    .service-detail-left,
    .service-detail-right,
    .process-left,
    .process-right,
    .cta-left,
    .contact-info-side,
    .location-right,
    .thanks-left,
    .info-left,
    .impact-left {
        padding: 2rem;
    }

    .hero-right,
    .impact-right,
    .trust-image,
    .cta-visual,
    .journey-left,
    .cta-right,
    .contact-visual-side,
    .location-left,
    .thanks-right {
        min-height: 400px;
    }

    .service-card,
    .faq-item {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

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

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

    .hero-left h1,
    .page-hero-split .hero-left h1 {
        font-size: 2rem;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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

    .btn-cookie {
        width: 100%;
    }

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

    .cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .legal-container {
        padding: 2rem;
    }
}