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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

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

.main-content {
    min-height: 70vh;
}

.hero-asymmetric {
    background-color: #f4f6f8;
    padding: 6rem 2rem;
    position: relative;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    max-width: 520px;
    padding-left: 3rem;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.hero-visual-shifted {
    flex: 1;
    margin-top: -2rem;
}

.hero-visual-shifted img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.intro-narrow {
    flex: 1.2;
    padding-right: 2rem;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.intro-narrow p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.intro-visual-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-irregular {
    background-color: #fafbfc;
    padding: 6rem 2rem 7rem;
}

.section-title-shifted {
    max-width: 1400px;
    margin: 0 auto 4rem;
    font-size: 2.5rem;
    color: #1a202c;
    padding-left: 8rem;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

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

.card-offset-1 {
    margin-left: 2rem;
}

.card-offset-2 {
    margin-left: 8rem;
}

.card-offset-3 {
    margin-left: 4rem;
}

.card-offset-4 {
    margin-left: 10rem;
}

.card-offset-5 {
    margin-left: 6rem;
}

.service-visual {
    flex: 1;
    max-width: 400px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-info {
    flex: 1.5;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-info p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.process-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.process-content-left {
    flex: 1;
}

.process-content-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.process-content-left p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.process-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.cta-section-overlap {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    position: relative;
}

.cta-block-shifted {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 15%;
    text-align: left;
    color: #ffffff;
}

.cta-block-shifted h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-block-shifted p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
}

.form-section-asymmetric {
    background-color: #f9fafb;
    padding: 6rem 2rem;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 20%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.inquiry-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: #2c3e50;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.footer-main {
    background-color: #1a202c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.footer-section p {
    color: #a0aec0;
    line-height: 1.7;
}

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

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-cookie-accept {
    background-color: #3498db;
    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;
}

.about-hero-offset {
    background-color: #f4f6f8;
    padding: 5rem 2rem;
}

.about-intro-block {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 6rem;
}

.about-intro-block h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.about-intro-block p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-image-shifted {
    flex: 1;
    margin-top: 4rem;
}

.story-image-shifted img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.story-text-overlap {
    flex: 1.2;
}

.story-text-overlap h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.story-text-overlap p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.values-section-irregular {
    background-color: #fafbfc;
    padding: 6rem 2rem;
}

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a202c;
}

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

.value-block {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.offset-position-1 {
    margin-left: 4rem;
    max-width: 700px;
}

.offset-position-2 {
    margin-left: 12rem;
    max-width: 700px;
}

.offset-position-3 {
    margin-left: 8rem;
    max-width: 700px;
}

.value-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.value-block p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.team-content-left {
    flex: 1;
}

.team-content-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.team-content-left p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.team-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.philosophy-section-narrow {
    background-color: #f9fafb;
    padding: 6rem 2rem;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    text-align: center;
}

.philosophy-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.cta-block-about {
    margin-left: 10rem;
    max-width: 600px;
}

.cta-block-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.cta-block-about p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.cta-link-inline {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    transition: color 0.2s ease;
}

.cta-link-inline:hover {
    color: #2980b9;
}

.services-hero-asymmetric {
    background-color: #f4f6f8;
    padding: 5rem 2rem;
}

.services-intro-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 8rem;
}

.services-intro-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-intro-offset p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 650px;
}

.service-detail-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-item-offset {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-1 {
    padding-left: 2rem;
}

.service-2 {
    padding-left: 6rem;
}

.service-3 {
    padding-left: 1rem;
}

.service-4 {
    padding-left: 8rem;
}

.service-5 {
    padding-left: 4rem;
}

.service-visual-block {
    flex: 1;
}

.service-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-description-block {
    flex: 1.3;
}

.service-description-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
}

.service-description-block p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-pricing-display {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-label {
    font-size: 0.9rem;
    color: #718096;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

.cta-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

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

.process-overview-section {
    background-color: #f9fafb;
    padding: 6rem 2rem;
}

.process-content-center {
    max-width: 1200px;
    margin: 0 auto;
}

.process-content-center h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
}

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

.process-step {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-1 {
    margin-left: 3rem;
}

.step-2 {
    margin-left: 7rem;
}

.step-3 {
    margin-left: 5rem;
}

.step-4 {
    margin-left: 9rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
}

.process-step p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.cta-services-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-block-services {
    max-width: 700px;
    margin: 0 auto;
}

.cta-block-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.cta-block-services p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-hero-offset {
    background-color: #f4f6f8;
    padding: 5rem 2rem;
}

.contact-intro-block {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 5rem;
}

.contact-intro-block h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-intro-block p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
}

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

.contact-info-left {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.contact-info-section {
    background-color: #fafbfc;
    padding: 6rem 2rem;
}

.info-blocks-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-block {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 750px;
}

.block-1 {
    margin-left: 3rem;
}

.block-2 {
    margin-left: 9rem;
}

.block-3 {
    margin-left: 6rem;
}

.info-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.info-block p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.location-context-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.location-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.cta-contact-page {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 5rem 2rem;
}

.cta-block-contact {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-block-contact h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-block-contact p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-section-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

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

.btn-return-home,
.btn-view-services {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

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

.btn-return-home:hover {
    transform: translateY(-2px);
}

.btn-view-services {
    background-color: #f9fafb;
    color: #2c3e50;
    border: 1px solid #d1d5db;
}

.btn-view-services:hover {
    transform: translateY(-2px);
}

.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-updated {
    color: #718096;
    margin-bottom: 3rem;
    font-style: italic;
}

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

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

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #4a5568;
}

.legal-content li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

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

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

@media (max-width: 1024px) {
    .hero-content-offset,
    .intro-offset,
    .process-split,
    .about-story-asymmetric,
    .team-section-split,
    .contact-details-asymmetric {
        flex-direction: column;
    }

    .services-grid-asymmetric .service-card {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-left: 0;
    }

    .section-title-shifted {
        padding-left: 0;
    }

    .service-item-offset {
        flex-direction: column;
    }

    .service-1,
    .service-2,
    .service-3,
    .service-4,
    .service-5 {
        padding-left: 0;
    }

    .form-container-offset {
        margin-left: auto;
    }

    .cta-block-shifted {
        margin-left: auto;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .about-intro-block,
    .services-intro-offset,
    .contact-intro-block {
        padding-left: 0;
    }

    .offset-position-1,
    .offset-position-2,
    .offset-position-3 {
        margin-left: 0;
        max-width: 100%;
    }

    .cta-block-about {
        margin-left: 0;
    }

    .block-1,
    .block-2,
    .block-3 {
        margin-left: 0;
    }

    .step-1,
    .step-2,
    .step-3,
    .step-4 {
        margin-left: 0;
    }

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

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

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

    .nav-list {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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