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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: sticky;
    top: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 5%;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding-left: 8%;
}

.hero-title-large {
    font-size: 72px;
    line-height: 0.95;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.5;
    max-width: 450px;
}

.hero-image-diagonal {
    position: absolute;
    right: -5%;
    top: 12%;
    width: 52%;
    height: 76%;
    transform: rotate(-3deg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-light);
}

.intro-story-offset {
    padding: 100px 5%;
    background: var(--bg-light);
}

.intro-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.intro-left p {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.intro-right-image {
    flex: 1;
    transform: translateY(-40px);
}

.intro-right-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #bdc3c7;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.problem-amplification {
    padding: 120px 5% 100px;
    background: var(--bg-white);
}

.problem-block-irregular {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.problem-text {
    flex: 1.3;
    padding-top: 40px;
}

.problem-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.problem-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-visual-overlap {
    flex: 1;
    transform: translateY(60px);
}

.problem-visual-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-section {
    padding: 110px 5%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--bg-white);
}

.insight-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-heading {
    font-size: 48px;
    margin-bottom: 60px;
    padding-left: 12%;
}

.insight-grid-offset {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    backdrop-filter: blur(10px);
}

.insight-card.card-elevated {
    transform: translateY(-30px);
    background: rgba(255, 255, 255, 0.12);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.trust-building {
    padding: 100px 5%;
    background: var(--bg-white);
}

.trust-wrapper-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.trust-content {
    flex: 1.1;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.trust-list {
    list-style: none;
    margin-top: 30px;
}

.trust-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.trust-image-offset {
    flex: 1;
    transform: translateX(20px);
}

.trust-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonials-irregular {
    padding: 100px 5%;
    background: var(--bg-light);
}

.testimonials-heading {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.testimonials-asymmetric-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-reveal {
    padding: 110px 5%;
    background: var(--bg-white);
}

.benefits-container h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-layout-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-block {
    background: var(--bg-light);
    padding: 40px 35px;
}

.benefit-wide {
    flex: 1.5;
    min-width: 320px;
}

.benefit-narrow {
    flex: 1;
    min-width: 280px;
}

.benefit-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.services-pricing-reveal {
    padding: 120px 5%;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.services-container-offset {
    max-width: 1300px;
    margin: 0 auto;
}

.services-heading {
    font-size: 48px;
    margin-bottom: 70px;
    text-align: center;
    color: var(--primary-color);
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 25px);
    min-width: 320px;
    background: var(--bg-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.service-featured {
    transform: scale(1.02);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 26px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 25px 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.service-duration {
    font-size: 14px;
    color: var(--text-light);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 25px 15px;
    color: var(--secondary-color);
}

.cta-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-select-service:hover {
    background: #c0392b;
}

.form-section-offset {
    padding: 100px 5%;
    background: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 650px;
    margin: 0 auto;
    padding: 50px 60px;
    background: var(--bg-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(-5%);
}

.form-container-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 16px;
    margin-bottom: 35px;
    color: var(--text-light);
}

.workshop-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-submit-btn {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: #c0392b;
}

.final-cta-irregular {
    padding: 90px 5%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
    text-align: center;
    color: var(--bg-white);
}

.final-cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 5% 30px;
}

.footer-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

.footer-main {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.footer-col ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: var(--bg-white);
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 30px;
}

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

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background: #c0392b;
}

.cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--bg-white);
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story-section {
    padding: 100px 5%;
    background: var(--bg-white);
}

.about-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text-block {
    flex: 1.2;
}

.about-text-block h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text-block p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-image-offset {
    flex: 1;
    transform: translateY(30px);
}

.about-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-philosophy {
    padding: 100px 5%;
    background: var(--bg-light);
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-container h2 {
    font-size: 44px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.philosophy-card {
    background: var(--bg-white);
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.philosophy-large {
    flex: 1.5;
    min-width: 320px;
}

.philosophy-small {
    flex: 1;
    min-width: 280px;
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.6;
}

.about-team-section {
    padding: 90px 5%;
    background: var(--bg-white);
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.team-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-approach {
    padding: 100px 5%;
    background: var(--bg-light);
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.approach-image-side {
    flex: 1;
}

.approach-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #bdc3c7;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.approach-text-side {
    flex: 1.2;
}

.approach-text-side h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.approach-text-side p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-values {
    padding: 90px 5%;
    background: var(--bg-white);
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.values-list-irregular {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
}

.services-intro {
    padding: 80px 5%;
    background: var(--bg-white);
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.services-intro-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-list-section {
    padding: 60px 5% 100px;
    background: var(--bg-light);
}

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

.service-detail-card {
    background: var(--bg-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
}

.service-offset-1 {
    transform: translateX(-3%);
}

.service-offset-2 {
    transform: translateX(3%);
}

.service-offset-3 {
    transform: translateX(-2%);
}

.service-offset-4 {
    transform: translateX(2%);
}

.service-detail-image {
    flex: 1;
    min-width: 350px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-detail-content {
    flex: 1.3;
    padding: 45px 40px;
}

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content > p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin: 25px 0;
}

.service-includes li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.service-detail-duration,
.service-detail-level {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.service-cta-link {
    display: inline-block;
    padding: 14px 30px;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta-link:hover {
    background: #c0392b;
}

.services-info {
    padding: 90px 5%;
    background: var(--bg-white);
}

.services-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-info-container h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.services-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.benefit-info-card {
    flex: 1;
    min-width: 260px;
    padding: 30px 25px;
    background: var(--bg-light);
}

.benefit-info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-info-card p {
    font-size: 15px;
    line-height: 1.6;
}

.services-faq {
    padding: 80px 5% 100px;
    background: var(--bg-light);
}

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

.faq-container h2 {
    font-size: 40px;
    margin-bottom: 45px;
    text-align: center;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-info-section {
    padding: 90px 5%;
    background: var(--bg-white);
}

.contact-layout-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details-block {
    flex: 1;
}

.contact-details-block h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.contact-image-side {
    flex: 1;
    transform: translateY(40px);
}

.contact-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-additional-info {
    padding: 80px 5%;
    background: var(--bg-light);
}

.additional-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-info-container h2 {
    font-size: 38px;
    margin-bottom: 45px;
    text-align: center;
    color: var(--primary-color);
}

.contact-methods {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-method-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 35px 30px;
}

.contact-method-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-method-card p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-method-card a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.contact-location-info {
    padding: 80px 5%;
    background: var(--bg-white);
}

.location-container {
    max-width: 800px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.location-container p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.thanks-hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
    color: var(--bg-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.thanks-info-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.thanks-info-box h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.thanks-steps {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-steps li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
}

.thanks-service-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    margin-bottom: 40px;
    font-size: 17px;
}

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

.thanks-btn-primary,
.thanks-btn-secondary {
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

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

.thanks-btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.thanks-btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.thanks-additional {
    padding: 90px 5%;
    background: var(--bg-white);
}

.thanks-additional-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-additional-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-additional-content p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.preparation-list {
    list-style: none;
}

.preparation-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.preparation-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.legal-page {
    padding: 80px 5% 100px;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-container ul {
    margin: 15px 0 20px 25px;
}

.legal-container ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.legal-container code {
    background: var(--bg-light);
    padding: 2px 6px;
    font-family: monospace;
    font-size: 14px;
}

@media (max-width: 900px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .hero-image-diagonal {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .intro-wrapper,
    .problem-block-irregular,
    .trust-wrapper-split,
    .about-content-asymmetric,
    .approach-wrapper,
    .contact-layout-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-right-image,
    .problem-visual-overlap,
    .about-image-offset {
        transform: none;
    }

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

    .service-detail-image {
        min-width: 100%;
        height: 250px;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4 {
        transform: none;
    }

    .form-container-asymmetric {
        transform: none;
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .hero-title-large {
        font-size: 36px;
    }

    .services-asymmetric-grid {
        gap: 30px;
    }

    .service-card {
        flex: 0 1 100%;
    }

    .footer-layout {
        flex-direction: column;
        gap: 30px;
    }
}
