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

:root {
    --primary-color: #8b6f47;
    --secondary-color: #4a5d3f;
    --accent-color: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e5e0d8;
}

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

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

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

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background-color: var(--bg-light);
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    background-color: var(--accent-color);
}

.hero-visual img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

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

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

.narrative-text {
    flex: 1.2;
}

.narrative-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.narrative-visual {
    flex: 1;
    background-color: var(--border-color);
}

.narrative-visual img {
    width: 100%;
}

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

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

.problem-visual {
    flex: 1;
    background-color: var(--border-color);
}

.problem-visual img {
    width: 100%;
}

.problem-text {
    flex: 1.3;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.citation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.citation:hover {
    text-decoration: underline;
}

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

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

.insight-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

.insight-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

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

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

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

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

.trust-text {
    flex: 1.3;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.trust-visual {
    flex: 1;
    background-color: var(--border-color);
}

.trust-visual img {
    width: 100%;
}

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

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

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

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

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

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: var(--bg-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px 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 6px 20px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 280px;
    background-color: var(--border-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

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

.btn-select-service.selected {
    background-color: var(--primary-color);
}

.cta-section-split {
    display: flex;
    min-height: 70vh;
}

.cta-visual {
    flex: 1;
    background-color: var(--border-color);
}

.cta-visual img {
    width: 100%;
    height: 100%;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 8%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-cta-large:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.consultation-form {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 6px;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.service-notification {
    background-color: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
}

.service-notification.show {
    display: block;
}

.service-notification.success {
    background-color: #d4edda;
    color: #155724;
}

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

.btn-submit:hover:not(:disabled) {
    background-color: var(--secondary-color);
}

.btn-submit:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
    font-weight: 600;
}

.footer-section p,
.footer-section ul {
    font-size: 0.9rem;
    color: var(--bg-light);
    opacity: 0.85;
}

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

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

.footer-section a {
    color: var(--bg-light);
    opacity: 0.85;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.references-list {
    padding-left: 1.2rem;
}

.references-list li {
    margin-bottom: 0.7rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--bg-light);
    opacity: 0.75;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--bg-light);
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    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: 2rem;
}

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

.cookie-actions {
    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(--bg-white);
}

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

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

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

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

.page-hero-content {
    flex: 1;
    padding: 4rem 8%;
    background-color: var(--bg-light);
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
}

.page-hero-visual {
    flex: 1;
    background-color: var(--border-color);
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
}

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

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

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.story-visual {
    flex: 1;
    background-color: var(--border-color);
}

.story-visual img {
    width: 100%;
}

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

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

.principles-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.principles-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.principle-block {
    flex: 1 1 calc(50% - 1.5rem);
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 6px;
}

.principle-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.process-split {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.process-split .process-visual {
    flex: 1;
    background-color: var(--border-color);
}

.process-split .process-visual img {
    width: 100%;
}

.process-split .process-text {
    flex: 1.3;
    max-width: 1200px;
    margin: 0 auto;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.process-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.process-text ul li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

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

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

.values-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 2rem;
}

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.cta-about {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

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

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

.cta-about-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--bg-white);
    opacity: 0.95;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1rem;
}

.btn-cta-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

.service-detail-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1.5rem;
}

.service-detail-visual {
    flex: 1;
    background-color: var(--border-color);
}

.service-detail-visual img {
    width: 100%;
}

.btn-service-inquire {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

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

.service-approach {
    background-color: var(--bg-light);
    padding: 4rem 5%;
    text-align: center;
}

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

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

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

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

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-layout {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-white);
}

.contact-info-block {
    flex: 1.2;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

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

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-visual-block {
    flex: 1;
    background-color: var(--border-color);
}

.contact-visual-block img {
    width: 100%;
}

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

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

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

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

.thanks-hero {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.3;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-content > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.selected-service-confirmation {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-confirmation h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

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

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.step {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 6px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

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

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

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

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

.thanks-visual {
    flex: 1;
    background-color: var(--border-color);
}

.thanks-visual img {
    width: 100%;
}

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

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.legal-container ul li,
.legal-container ol li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

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

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .cta-section-split {
        flex-direction: column;
    }

    .narrative-container,
    .problem-split,
    .trust-split,
    .story-container,
    .contact-layout,
    .thanks-hero {
        flex-direction: column;
    }

    .insight-grid,
    .testimonial-container,
    .values-grid {
        flex-direction: column;
    }

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

    .steps-grid,
    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

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

    .principles-layout {
        flex-direction: column;
    }

    .principle-block {
        flex: 1 1 100%;
    }

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }
}