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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: var(--primary-color);
    color: #ffffff;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-right a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: var(--accent-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 5rem 8%;
    background: var(--bg-light);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    min-height: 85vh;
}

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

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-asymmetric {
    display: flex;
    padding: 8rem 5%;
    gap: 5rem;
    align-items: center;
    background: var(--bg-white);
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 2rem;
}

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--accent-color);
}

.why-different {
    display: flex;
    align-items: center;
}

.why-left {
    flex: 1;
    min-height: 600px;
}

.why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-right {
    flex: 1;
    padding: 5rem 8%;
    background: var(--bg-white);
}

.why-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.reason-block {
    margin-bottom: 2.5rem;
}

.reason-block h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.booking-section {
    padding: 8rem 5%;
    background: var(--bg-light);
}

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

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.booking-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.booking-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    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(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonials-inline {
    padding: 8rem 5%;
    background: var(--bg-white);
    text-align: center;
}

.testimonials-inline h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.testimonials-flow {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.final-cta-split {
    display: flex;
    min-height: 500px;
    align-items: center;
}

.cta-content {
    flex: 1;
    padding: 5rem 8%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-image {
    flex: 1;
    min-height: 500px;
}

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

.footer {
    background: var(--text-dark);
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-hero {
    padding: 8rem 5% 4rem;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.story-content {
    flex: 1;
    padding: 4rem 8%;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.story-image {
    flex: 1;
    min-height: 500px;
}

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

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

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

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

.approach-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.team-section {
    padding: 6rem 5%;
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--secondary-color);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

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

.team-member span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.values-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: var(--bg-light);
}

.values-text {
    flex: 1;
    padding: 4rem 8%;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.values-list li {
    font-size: 1.2rem;
    color: var(--text-dark);
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.values-visual {
    flex: 1;
    min-height: 500px;
}

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

.cta-simple {
    padding: 6rem 5%;
    background: var(--primary-color);
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.service-detail {
    padding: 5rem 5%;
}

.service-detail.alternate {
    background: var(--bg-light);
}

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

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

.detail-content ul {
    margin-bottom: 2rem;
}

.detail-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background: var(--accent-color);
}

.detail-image {
    flex: 1;
}

.detail-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.services-comparison {
    padding: 6rem 5%;
    background: var(--bg-white);
    text-align: center;
}

.services-comparison h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-comparison > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.comparison-cards {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.comparison-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.comparison-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-info-section {
    padding: 5rem 5%;
}

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

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

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

.contact-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-block a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.map-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-expectations {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.contact-expectations h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.expectation-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.faq-contact {
    padding: 5rem 5%;
}

.faq-contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

.thanks-hero {
    min-height: 60vh;
    padding: 6rem 5%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.service-reminder {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-reminder h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-reminder p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

.thanks-note a {
    color: var(--accent-color);
    font-weight: 600;
}

.what-to-expect {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.what-to-expect h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.expect-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

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

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.update-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
}

.legal-section h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1rem 0 0.5rem;
}

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

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section ul li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-section a {
    color: var(--accent-color);
    font-weight: 600;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th {
    background: var(--primary-color);
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .hero-split,
    .why-different,
    .about-story-split,
    .values-split,
    .final-cta-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .why-left,
    .why-right,
    .story-content,
    .story-image,
    .values-text,
    .values-visual,
    .cta-content,
    .cta-image {
        min-height: auto;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .detail-split {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .header-right {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-left p {
        font-size: 1.1rem;
    }

    .section-header-center h2,
    .intro-content h2,
    .why-right h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .service-card,
    .approach-item,
    .testimonial,
    .comparison-card,
    .expectation-item,
    .expect-item {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .testimonials-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .legal-container {
        padding: 2rem;
    }

    .thanks-container h1 {
        font-size: 2.2rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}