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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.nav-asymmetric {
    background-color: var(--bg-white);
    padding: 1.2rem 5%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: var(--bg-light);
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

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

.hero-text-block {
    flex: 1 1 450px;
    padding-left: 3rem;
    transform: translateY(-20px);
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-visual-offset {
    flex: 1 1 500px;
    transform: translateX(30px) rotate(-2deg);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-block-offset {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.intro-narrow {
    max-width: 700px;
    margin: 0 0 3rem 8%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stats-cards-irregular {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    flex: 1 1 280px;
    padding: 2.5rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-1 {
    transform: translateY(-15px);
}

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

.stat-3 {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.services-staggered {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.section-header-offset {
    max-width: 600px;
    margin: 0 0 4rem 10%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.service-layout-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.service-left {
    transform: translateX(-40px);
}

.service-right {
    transform: translateX(40px);
}

.service-center {
    transform: translateX(0);
    justify-content: center;
}

.service-image {
    flex: 1 1 350px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

.service-details {
    flex: 1 1 400px;
}

.service-details.full-width {
    flex: 1 1 100%;
    text-align: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-details p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-details li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.select-service-btn, .btn-service {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.benefits-overlap {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.benefits-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.benefit-text-block {
    flex: 1 1 450px;
    transform: translateX(-30px);
}

.benefit-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.benefits-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.benefit-visual {
    flex: 1 1 500px;
    transform: translateX(20px) translateY(30px);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.benefit-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonials-irregular {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials-irregular h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.testimonials-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 350px;
    padding: 2.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

.t-offset-2 {
    transform: translateY(15px);
}

.t-offset-3 {
    transform: translateY(-10px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

.form-section-offset {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto 0 10%;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transform: translateX(-30px);
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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: var(--secondary-color);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.info-disclaimer {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 8px;
}

.disclaimer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.disclaimer-box p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1 1 220px;
}

.footer-main {
    flex: 1 1 300px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

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

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--success-color);
    color: white;
}

.btn-cookie.secondary {
    background-color: transparent;
    border: 2px solid white;
}

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

.page-header-offset {
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.story-content-narrow {
    max-width: 800px;
    margin: 0 auto 0 8%;
}

.story-content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-content-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.mission-vision-offset {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.mission-block, .vision-block {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.mission-visual, .vision-visual {
    flex: 1 1 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.mission-visual img, .vision-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-text, .vision-text {
    flex: 1 1 450px;
}

.mission-text h2, .vision-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-text p, .vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.values-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 250px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.v-1 {
    transform: translateY(-15px);
}

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

.v-3 {
    transform: translateY(-5px);
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-approach {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-about {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.cta-box-offset {
    max-width: 700px;
    margin: 0 auto 0 10%;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    transform: translateX(-30px);
}

.cta-box-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box-offset p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.layout-left {
    transform: translateX(-40px);
}

.layout-right {
    transform: translateX(40px);
}

.layout-center {
    justify-content: center;
}

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

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

.service-detail-content {
    flex: 1 1 500px;
}

.service-detail-content.full-centered {
    text-align: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.services-faq {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.services-cta {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.cta-centered-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    color: white;
}

.cta-centered-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-centered-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-content {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.contact-layout-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1 1 400px;
    transform: translateX(-20px);
}

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.note-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-form-block {
    flex: 1 1 500px;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(20px);
}

.contact-form-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-map-placeholder {
    padding: 3rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.map-info p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.thanks-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.service-note {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    padding: 1rem;
    background-color: rgba(255,255,255,0.2);
    border-radius: 6px;
}

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.next-steps {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.next-steps-container {
    max-width: 1100px;
    margin: 0 auto;
}

.next-steps-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.step-box {
    flex: 1 1 300px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.step-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.step-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.updated-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary-color);
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-dark);
}

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

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

    .hero-visual-offset {
        transform: translateX(0) rotate(0);
    }

    .service-left,
    .service-right,
    .layout-left,
    .layout-right {
        transform: translateX(0);
    }

    .form-container-asymmetric,
    .cta-box-offset {
        transform: translateX(0);
        margin: 0 auto;
        padding: 2.5rem;
    }

    .intro-narrow,
    .story-content-narrow {
        margin: 0 auto;
    }

    .section-header-offset {
        margin: 0 auto 3rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .ad-label {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .contact-info-block,
    .contact-form-block {
        transform: translateX(0);
    }

    .benefit-text-block,
    .benefit-visual {
        transform: translateX(0) translateY(0);
    }

    .stat-1, .stat-2, .stat-3,
    .v-1, .v-2, .v-3, .v-4,
    .t-offset-1, .t-offset-2, .t-offset-3 {
        transform: translateY(0);
    }
}