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

:root {
    --primary-color: #2d5a4a;
    --secondary-color: #8b9f98;
    --accent-color: #a77b5e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f6f3;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.header-asymmetric {
    background-color: var(--background-white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

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

.logo-block {
    flex: 1;
    min-width: 200px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background-color: var(--background-light);
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

.nav-floating {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.nav-floating a:hover {
    color: var(--primary-color);
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 5rem;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background-color: var(--background-light);
    transform: skewX(-3deg);
    transform-origin: top right;
    overflow: hidden;
}

.hero-image-offset img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(3deg) scale(1.2);
    transform-origin: center;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 3rem;
    margin-left: 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-text-overlay h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-text-overlay p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-offset {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

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

.intro-text-left {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.intro-text-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-text-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.intro-image-right {
    flex: 1;
    min-width: 300px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    overflow: hidden;
}

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

.services-irregular {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

.section-title-center {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-grid-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    width: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-top-left {
    margin-top: -20px;
    margin-left: -10px;
}

.card-middle-right {
    margin-top: 30px;
    margin-right: -10px;
}

.card-bottom-left {
    margin-top: 50px;
    margin-left: -10px;
}

.card-top-right {
    margin-top: -10px;
    margin-right: -10px;
}

.card-middle-left {
    margin-top: 40px;
    margin-left: -10px;
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: var(--background-light);
    overflow: hidden;
}

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

.service-content {
    padding: 1.8rem;
}

.service-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.price-tag {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.btn-select-service {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

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

.cta-inline {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-align: center;
}

.cta-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.benefits-stacked {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.benefit-block {
    max-width: 700px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    background-color: var(--background-white);
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.benefit-left {
    margin-left: 5%;
}

.benefit-right {
    margin-left: auto;
    margin-right: 5%;
}

.benefit-center {
    margin-left: auto;
    margin-right: auto;
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-block h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-block p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.form-section-asymmetric {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

.form-container-offset {
    max-width: 650px;
    margin-left: 10%;
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.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);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--background-white);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border-top: 1px solid var(--border-color);
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-left: 3px solid var(--accent-color);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col h4,
.footer-col h5 {
    margin-bottom: 1rem;
    color: var(--background-white);
    font-weight: 600;
}

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

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

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

.footer-col ul li a {
    color: var(--background-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.85;
}

.footer-col ul li a:hover {
    color: var(--background-white);
    opacity: 1;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: var(--background-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

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

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

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

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

.page-hero-simple {
    background-color: var(--background-light);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.page-hero-simple p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

.story-image-offset {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-light);
    border-radius: 6px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.story-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: rotate(2deg) scale(1.1);
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.team-section-irregular {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.section-title-left {
    max-width: 1200px;
    margin: 0 auto 3rem 5%;
    font-size: 2.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.team-member {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.member-offset-left {
    margin-left: -30px;
}

.member-offset-right {
    margin-right: -30px;
    margin-top: 50px;
}

.member-offset-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.member-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.values-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.values-wrapper h3 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.values-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 6px;
}

.value-left {
    margin-left: 5%;
    margin-right: 20%;
}

.value-right {
    margin-left: 20%;
    margin-right: 5%;
}

.value-center {
    margin-left: 15%;
    margin-right: 15%;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

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

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

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.mission-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.mission-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--secondary-color);
    border-radius: 6px;
    overflow: hidden;
}

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

.cta-about {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-align: center;
}

.cta-about h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 3rem 2rem;
    background-color: var(--background-white);
}

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

.block-left {
    flex-direction: row;
}

.block-right {
    flex-direction: row-reverse;
}

.block-center {
    flex-direction: row;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 6px;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-light);
    border-radius: 6px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

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

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
}

.booking-cta-section {
    padding: 4rem 2rem;
    background-color: var(--background-light);
    text-align: center;
}

.booking-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.booking-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.contact-grid-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--background-light);
    border-radius: 6px;
}

.contact-address {
    margin-top: -30px;
}

.contact-email {
    margin-top: 20px;
}

.contact-hours {
    margin-top: 50px;
}

.contact-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-detail {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hours-list {
    list-style: none;
    margin-bottom: 1.2rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
}

.contact-cta {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.cta-box-offset {
    max-width: 650px;
    margin-left: 15%;
    padding: 3rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-box-offset h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.contact-image-section {
    padding: 3rem 2rem;
    background-color: var(--background-white);
}

.contact-image-section img {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    object-fit: cover;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: var(--background-white);
    padding: 4rem 3rem;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.thanks-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-confirmation {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234536;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.next-steps {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

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

.steps-container h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 6px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.legal-page {
    background-color: var(--background-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-left: 3px solid var(--primary-color);
    color: var(--text-light);
}

.legal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--accent-color);
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        min-height: 500px;
    }

    .hero-image-offset {
        width: 100%;
        transform: none;
    }

    .hero-image-offset img {
        transform: none;
    }

    .hero-text-overlay {
        margin-left: 0;
        margin-top: 20rem;
    }

    .hero-text-overlay h2 {
        font-size: 2rem;
    }

    .intro-container,
    .story-container,
    .mission-container,
    .service-detail-block {
        flex-direction: column;
    }

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

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

    .team-member {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .value-left,
    .value-right,
    .value-center {
        margin-left: 0;
        margin-right: 0;
    }

    .cta-box-offset {
        margin-left: 0;
    }

    .section-title-left {
        margin-left: 0;
    }

    .nav-floating {
        gap: 1rem;
    }
}