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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
}

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

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

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

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

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

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

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

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

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

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-wrapper {
    flex: 0 0 auto;
}

.brand-logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 3px;
    order: 3;
    flex: 0 0 auto;
}

.main-nav {
    display: flex;
    gap: 35px;
    flex: 0 0 auto;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: #f4f6f8;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.hero-text-block {
    max-width: 520px;
    margin-left: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 2px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hero-image-diagonal {
    position: absolute;
    right: -100px;
    top: 0;
    bottom: 0;
    width: 60%;
    transform: skewX(-8deg);
    overflow: hidden;
    background-color: #cbd5e0;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(8deg) scale(1.2);
}

.intro-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-column-left {
    flex: 1;
    padding-right: 40px;
}

.intro-column-left h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 25px;
    font-weight: 500;
}

.intro-column-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-image-right {
    flex: 0 0 420px;
    margin-top: -60px;
    background-color: #e8ecef;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview {
    background-color: #f9fafb;
    padding: 100px 40px;
}

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.section-title-offset h2 {
    font-size: 42px;
    color: #1a252f;
    font-weight: 500;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    padding: 0;
    border-radius: 2px;
    overflow: hidden;
}

.service-card.offset-top {
    margin-top: 0;
}

.service-card.offset-bottom {
    margin-top: 60px;
}

.service-card.offset-middle {
    margin-top: 30px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #cbd5e0;
}

.service-card h3 {
    font-size: 24px;
    color: #1a252f;
    margin: 25px 25px 15px;
    font-weight: 500;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 25px 20px;
}

.price-tag {
    display: block;
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
    margin: 0 25px 20px;
}

.service-link {
    display: inline-block;
    margin: 0 25px 25px;
    color: #3498db;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.trust-block-diagonal {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    position: relative;
}

.trust-content {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    transform: skewY(-2deg);
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-text {
    flex: 1;
    transform: skewY(2deg);
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 500;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e8ecef;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #5dade2;
}

.trust-stats {
    flex: 0 0 300px;
    transform: skewY(2deg);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 600;
    color: #3498db;
}

.stat-label {
    font-size: 14px;
    color: #cbd5e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-overlap {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonial-container {
    display: flex;
    gap: 60px;
    position: relative;
}

.testimonial-card {
    flex: 1;
    background-color: #f4f6f8;
    padding: 40px;
    border-left: 4px solid #3498db;
}

.testimonial-card.shifted {
    margin-top: 80px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.booking-section-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.booking-visual {
    flex: 0 0 500px;
    margin-bottom: -100px;
    background-color: #e8ecef;
}

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

.booking-form-offset {
    flex: 1;
    padding: 50px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
}

.booking-form-offset h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 15px;
    font-weight: 500;
}

.booking-form-offset > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.journey-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.main-footer {
    background-color: #1a252f;
    color: #cbd5e0;
    padding: 60px 40px 30px;
    margin-top: 120px;
}

.footer-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-column h3 {
    font-size: 22px;
}

.footer-column h4 {
    font-size: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3498db;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

.page-hero-offset {
    background-color: #f4f6f8;
    padding: 100px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-text-diagonal {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding-left: 100px;
}

.hero-text-diagonal h1 {
    font-size: 54px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text-diagonal p {
    font-size: 20px;
    color: #4a5568;
    max-width: 600px;
}

.hero-visual-split {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    opacity: 0.15;
    background-color: #cbd5e0;
}

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

.about-content-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.content-block-wide {
    flex: 1;
    padding-right: 40px;
}

.content-block-wide h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 25px;
    font-weight: 500;
}

.content-block-wide p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.content-image-offset {
    flex: 0 0 450px;
    margin-top: 80px;
    background-color: #e8ecef;
}

.content-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.philosophy-diagonal {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
    order: 2;
}

.philosophy-text h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 25px;
    font-weight: 500;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 0 0 480px;
    order: 1;
    margin-bottom: -80px;
    background-color: #e8ecef;
}

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

.values-overlap {
    max-width: 1400px;
    margin: 100px auto;
    padding: 80px 40px;
    background-color: #f9fafb;
}

.values-overlap h2 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 500;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-top: 3px solid #3498db;
}

.value-card.left-offset {
    margin-top: 0;
}

.value-card.right-offset {
    margin-top: 40px;
}

.value-card.center-offset {
    margin-top: 20px;
}

.value-card.bottom-offset {
    margin-top: 60px;
}

.value-card h3 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section-staggered {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-section-staggered h2 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-intro {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
}

.team-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background-color: #f4f6f8;
    border-left: 4px solid #2c3e50;
}

.team-member.offset-one {
    margin-top: 0;
}

.team-member.offset-two {
    margin-top: 50px;
}

.team-member.offset-three {
    margin-top: 25px;
}

.team-member h3 {
    font-size: 22px;
    color: #1a252f;
    margin-bottom: 8px;
    font-weight: 500;
}

.team-member .role {
    font-size: 14px;
    color: #3498db;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-diagonal {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.cta-content {
    background-color: #2c3e50;
    padding: 80px 60px;
    text-align: center;
    transform: skewY(-2deg);
}

.cta-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    transform: skewY(2deg);
    font-weight: 500;
}

.cta-content p {
    font-size: 18px;
    color: #cbd5e0;
    margin-bottom: 35px;
    transform: skewY(2deg);
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 3px;
    transform: skewY(2deg);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: skewY(2deg) translateY(-2px);
}

.services-hero-diagonal {
    background-color: #f4f6f8;
    padding: 100px 40px;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 54px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-hero-content p {
    font-size: 20px;
    color: #4a5568;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.service-detail-card.offset-left {
    margin-left: 0;
}

.service-detail-card.offset-right {
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 480px;
    background-color: #e8ecef;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-info > p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

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

.service-features li {
    font-size: 15px;
    color: #4a5568;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-top: 25px;
}

.pricing-info .price {
    font-size: 32px;
    color: #2c3e50;
    font-weight: 600;
}

.pricing-info .price-note {
    font-size: 14px;
    color: #7f8c8d;
}

.booking-cta-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.cta-visual-left {
    background-color: #f4f6f8;
    padding: 60px 80px;
    max-width: 700px;
    margin-left: 100px;
}

.cta-visual-left h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-visual-left p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.contact-hero-asymmetric {
    background-color: #f4f6f8;
    padding: 100px 40px 80px;
}

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

.contact-intro h1 {
    font-size: 54px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-intro p {
    font-size: 20px;
    color: #4a5568;
    max-width: 600px;
}

.contact-info-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-block h2 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

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

.contact-visual-right {
    flex: 0 0 450px;
    margin-top: -80px;
    background-color: #e8ecef;
}

.contact-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.location-description-diagonal {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.location-text {
    max-width: 800px;
    margin-left: 150px;
    padding: 50px;
    background-color: #f9fafb;
    border-left: 4px solid #3498db;
}

.location-text h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 20px;
    font-weight: 500;
}

.location-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.contact-cta-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.cta-content-centered {
    background-color: #2c3e50;
    padding: 70px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 500;
}

.cta-content-centered p {
    font-size: 17px;
    color: #cbd5e0;
    margin-bottom: 30px;
}

.cta-button-alt {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cta-button-alt:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.thanks-hero-centered {
    background-color: #f4f6f8;
    padding: 100px 40px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 54px;
    color: #1a252f;
    margin-bottom: 30px;
    font-weight: 600;
}

.thanks-message {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-details {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 25px;
    font-weight: 500;
}

.next-steps {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-visual-offset {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.visual-block {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e8ecef;
}

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

.next-actions-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.action-card {
    flex: 1;
    padding: 40px;
    background-color: #f9fafb;
    border-top: 3px solid #3498db;
}

.action-card.offset-left {
    margin-top: 0;
}

.action-card.offset-right {
    margin-top: 60px;
}

.action-card h2 {
    font-size: 28px;
    color: #1a252f;
    margin-bottom: 15px;
    font-weight: 500;
}

.action-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.action-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.legal-page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-page-content h1 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 15px;
    font-weight: 600;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page-content h2 {
    font-size: 28px;
    color: #1a252f;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
}

.legal-page-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.legal-page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.legal-page-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-page-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page-content a:hover {
    color: #2980b9;
}

@media (max-width: 1200px) {
    .hero-image-diagonal {
        width: 50%;
    }

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

    .service-card {
        margin-top: 0 !important;
    }
}

@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .ad-disclosure {
        order: 2;
    }

    .main-nav {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .hero-asymmetric {
        min-height: 500px;
    }

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

    .hero-text-block h1 {
        font-size: 36px;
    }

    .intro-offset,
    .philosophy-diagonal,
    .about-content-asymmetric,
    .booking-section-asymmetric,
    .contact-info-offset {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image-right,
    .philosophy-image,
    .content-image-offset,
    .booking-visual,
    .contact-visual-right {
        flex: 1;
        margin-top: 0;
        margin-bottom: 0;
    }

    .philosophy-text {
        order: 1;
    }

    .philosophy-image {
        order: 2;
    }

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

    .service-image {
        flex: 1;
    }

    .trust-content {
        flex-direction: column;
        gap: 40px;
    }

    .trust-stats {
        flex: 1;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-card.shifted {
        margin-top: 0;
    }

    .footer-content-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .next-actions-asymmetric {
        flex-direction: column;
    }

    .action-card.offset-right {
        margin-top: 0;
    }
}