/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

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

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

a:hover {
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    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 {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: white;
}

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

/* Asymmetric Header */
.asymmetric-header {
    background-color: white;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand-section {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

/* Hero Asymmetric */
.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
    gap: 4rem;
}

.hero-content-offset {
    flex: 1;
    padding-right: 3rem;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #34495e;
    transform: translateY(-3px);
    opacity: 1;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: #ecf0f1;
}

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

/* Offset Intro Section */
.offset-intro {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.2;
    padding-top: 3rem;
}

.intro-block-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-block-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.intro-block-right img {
    width: 100%;
    height: 450px;
}

/* Staggered Benefits */
.staggered-benefits {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 700px;
}

.benefit-offset-1 {
    align-self: flex-start;
    margin-left: 5%;
}

.benefit-offset-2 {
    align-self: flex-end;
    margin-right: 5%;
}

.benefit-offset-3 {
    align-self: flex-start;
    margin-left: 15%;
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    background-color: white;
    padding: 6rem 2rem;
    margin: 4rem 0;
}

.services-header-asymmetric {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 10%;
}

.services-header-asymmetric h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header-asymmetric p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-item {
    background-color: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    flex-basis: calc(33.333% - 1.5rem);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-item img {
    width: 100%;
    height: 240px;
    background-color: #ecf0f1;
}

.service-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
}

.service-item p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 1.5rem 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-item .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 1.5rem;
}

.btn-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

/* Form Section Asymmetric */
.form-section-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-visual {
    flex: 1;
    padding-top: 2rem;
}

.form-visual h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.form-visual p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.selected-service-display {
    background-color: #ecf0f1;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 2rem 1rem;
    margin-top: 6rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-block ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-block ul li a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

/* About Page Styles */
.about-hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.about-content-block {
    max-width: 800px;
    margin-left: 10%;
}

.about-content-block h1 {
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.3rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.philosophy-section {
    background-color: white;
    padding: 5rem 2rem;
    margin: 3rem 0;
}

.philosophy-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.philosophy-text {
    flex: 1.3;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.approach-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

.approach-card {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.approach-left {
    transform: translateY(-30px);
}

.approach-center {
    transform: translateY(20px);
}

.approach-right {
    transform: translateY(-10px);
}

.approach-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.approach-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.team-section-offset {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-visual {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.team-visual img {
    width: 100%;
    height: 500px;
}

.team-text {
    flex: 1.2;
}

.team-text h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section {
    background-color: white;
    padding: 5rem 2rem;
    margin: 3rem 0;
}

.values-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
}

.values-stagger {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: #fafafa;
    padding: 2rem 2.5rem;
    border-radius: 10px;
    max-width: 600px;
}

.value-offset-1 {
    align-self: flex-start;
    margin-left: 8%;
}

.value-offset-2 {
    align-self: flex-end;
    margin-right: 8%;
}

.value-offset-3 {
    align-self: flex-start;
    margin-left: 20%;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Services Page Styles */
.services-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.service-layout-1 {
    flex-direction: row;
}

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

.service-info {
    flex: 1.2;
}

.service-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-includes h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-includes ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-pricing {
    margin-top: 2rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.service-visual {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-cta-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-content-offset {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content-offset p {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #27ae60;
    color: white;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta-large:hover {
    background-color: #229954;
    transform: translateY(-3px);
    opacity: 1;
}

/* Contact Page Styles */
.contact-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.contact-hero h1 {
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    margin-left: 10%;
}

.contact-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin-left: 10%;
    line-height: 1.7;
}

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

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

.contact-block h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 1rem;
    line-height: 1.6;
}

.contact-visual-block {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.contact-visual-block img {
    width: 100%;
    height: 500px;
}

.contact-approach {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-approach h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    flex-basis: calc(33.333% - 1.5rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.step-offset-1 {
    transform: translateY(-20px);
}

.step-offset-2 {
    transform: translateY(10px);
}

.step-offset-3 {
    transform: translateY(-30px);
}

.step-offset-4 {
    transform: translateY(15px);
}

.step-offset-5 {
    transform: translateY(-10px);
}

.step-offset-6 {
    transform: translateY(5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecf0f1;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Thanks Page Styles */
.thanks-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service-confirmation {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.next-step {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.next-step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.next-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    opacity: 1;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: white;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: white;
    transform: translateY(-2px);
    opacity: 1;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

    .service-item {
        flex-basis: 100%;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .philosophy-grid,
    .team-section-offset,
    .contact-main,
    .service-detail {
        flex-direction: column;
    }

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

    .approach-left,
    .approach-center,
    .approach-right {
        transform: none;
    }

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

@media (max-width: 768px) {
    .main-nav {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

    .services-header-asymmetric h2,
    .about-content-block h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .approach-steps {
        flex-direction: column;
    }

    .step-item {
        flex-basis: 100%;
    }

    .step-offset-1,
    .step-offset-2,
    .step-offset-3,
    .step-offset-4,
    .step-offset-5,
    .step-offset-6 {
        transform: none;
    }

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

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