* {
    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: #ffffff;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f39c12;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    z-index: 1001;
    font-weight: 500;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 40px;
    width: 240px;
    height: calc(100vh - 40px);
    background-color: #1a1a1a;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1000;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.nav-footer a {
    display: block;
    color: #95a5a6;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.nav-footer a:hover {
    color: #ffffff;
}

.main-content {
    margin-left: 240px;
    margin-top: 40px;
    min-height: 100vh;
}

.hero-asymmetric {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 580px;
    padding: 80px 60px;
    margin-left: 10%;
}

.hero-title-large {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-image-overlay {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    width: 50%;
    height: 85%;
    overflow: hidden;
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #34495e;
}

.intro-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.intro-block {
    flex: 1.5;
    padding-right: 40px;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-image-small {
    flex: 1;
    position: relative;
    transform: translateY(-30px);
}

.intro-image-small img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
}

.services-asymmetric {
    padding: 120px 60px;
    background-color: #f4f6f8;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 8%;
}

.services-header-offset h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 18px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-large {
    flex: 1 1 calc(55% - 15px);
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card-large:hover {
    transform: translateY(-5px);
}

.service-card-small {
    flex: 1 1 calc(45% - 15px);
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card-small:hover {
    transform: translateY(-5px);
}

.service-card-offset {
    flex: 1 1 calc(48% - 15px);
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(40px);
    transition: transform 0.3s;
}

.service-card-offset:hover {
    transform: translateY(35px);
}

.service-card-wide {
    flex: 1 1 calc(60% - 15px);
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card-wide:hover {
    transform: translateY(-5px);
}

.service-card-elevated {
    flex: 1 1 calc(40% - 15px);
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-40px);
    transition: transform 0.3s;
}

.service-card-elevated:hover {
    transform: translateY(-45px);
}

.service-image-bg {
    height: 200px;
    overflow: hidden;
}

.service-image-bg img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.trust-section-diagonal {
    padding: 100px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-section-diagonal > * {
    transform: skewY(2deg);
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.trust-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    max-width: 200px;
}

.form-section-split {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.form-container {
    flex: 1.2;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 80px;
    background-color: #fef9e7;
    border-left: 4px solid #f39c12;
}

.disclaimer-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.footer-split {
    background-color: #1a1a1a;
    color: #ecf0f1;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 60px 60px 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-brand p {
    color: #95a5a6;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding: 25px;
    border-top: 1px solid #333;
    color: #95a5a6;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

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

.btn-cookie-reject:hover {
    opacity: 0.8;
}

.page-hero-minimal {
    padding: 120px 80px 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-story-offset {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
}

.story-image-left {
    flex: 1;
    transform: translateX(-40px);
}

.story-image-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.12);
}

.story-content-right {
    flex: 1.3;
}

.story-content-right h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-asymmetric {
    padding: 100px 60px;
    background-color: #f4f6f8;
}

.values-header {
    margin-bottom: 60px;
    text-align: center;
}

.values-header h2 {
    font-size: 44px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
}

.value-card-elevated {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    transform: translateY(-25px);
}

.value-card-offset {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    transform: translateY(25px);
}

.value-card h3,
.value-card-elevated h3,
.value-card-offset h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p,
.value-card-elevated p,
.value-card-offset p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.team-minimal {
    padding: 100px 80px;
    background-color: #ffffff;
    text-align: center;
}

.team-minimal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.team-stats-split {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.team-stat {
    text-align: center;
}

.stat-large {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.team-stat p {
    font-size: 16px;
    color: #666;
    max-width: 200px;
}

.team-description {
    font-size: 17px;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.cta-about {
    padding: 100px 80px;
    background-color: #ecf0f1;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-secondary:hover {
    background-color: #2980b9;
}

.services-detailed {
    padding: 60px 80px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-intro {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-top: 30px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-right: auto;
}

.services-cta-section {
    padding: 80px 80px;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    margin-top: 60px;
}

.services-cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.services-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-primary:hover {
    background-color: #2980b9;
}

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

.contact-info-block {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.email-text {
    color: #2c3e50;
    font-weight: 600;
}

.contact-note {
    margin-top: 50px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    overflow: hidden;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
}

.contact-additional {
    padding: 100px 80px;
    background-color: #ffffff;
}

.contact-additional h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 80px;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.service-confirmation {
    margin: 30px 0;
}

.selected-service-info {
    font-size: 17px;
    color: #2c3e50;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 6px;
    display: inline-block;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.thanks-next-steps {
    padding: 100px 80px;
    background-color: #ffffff;
}

.thanks-next-steps h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.legal-content {
    padding: 60px 100px 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 700;
}

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .hero-title-large {
        font-size: 52px;
    }

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

    .service-card-large,
    .service-card-small,
    .service-card-offset,
    .service-card-wide,
    .service-card-elevated {
        flex: 1 1 100%;
        transform: none;
    }

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

@media (max-width: 768px) {
    .ad-disclosure {
        font-size: 11px;
        padding: 6px 10px;
    }

    .nav-sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-content-offset {
        margin-left: 0;
        padding: 0;
        max-width: 100%;
    }

    .hero-title-large {
        font-size: 38px;
    }

    .hero-image-overlay {
        position: static;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .intro-image-small {
        transform: none;
    }

    .services-asymmetric {
        padding: 60px 20px;
    }

    .trust-section-diagonal {
        padding: 60px 20px;
        transform: none;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

    .form-section-split {
        flex-direction: column;
        padding: 60px 20px;
    }

    .about-story-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .story-image-left {
        transform: none;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card,
    .value-card-elevated,
    .value-card-offset {
        flex: 1 1 100%;
        transform: none;
    }

    .team-stats-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .faq-item {
        flex: 1 1 100%;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .legal-content {
        padding: 40px 20px;
    }
}