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

:root {
    --primary-color: #2c1810;
    --secondary-color: #d4a574;
    --accent-color: #8b4513;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #faf8f5;
    --bg-cream: #f5f1ec;
    --white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #c99558;
    transform: translateY(-2px);
}

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

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

.header-split {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5% 4rem 8%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6d3410;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

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

.intro-text-narrow {
    max-width: 780px;
    margin: 0 auto;
}

.intro-text-narrow h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
}

.benefits-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
}

.benefit-card-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.benefit-card-large img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.benefit-content {
    padding: 2rem;
}

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

.benefit-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefit-card-small {
    flex: 1 1 calc(40% - 1rem);
    min-width: 280px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-card-small h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card-small p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

.services-preview {
    padding: 6rem 5%;
    background-color: var(--white);
}

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

.section-header-centered h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-info p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

.btn-select-service:hover {
    background-color: #c99558;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.cta-inline-sticky {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

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

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

.cta-content-centered p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

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

.btn-cta-white:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.testimonials-offset {
    padding: 6rem 5%;
    background-color: var(--bg-cream);
}

.section-title-left {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
    padding-left: 2%;
}

.testimonials-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.35rem);
    min-width: 280px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
}

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

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.form-wrapper {
    flex: 1.2;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
}

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

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

.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(--secondary-color);
}

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

.btn-submit:hover {
    background-color: #6d3410;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.final-cta-visual {
    padding: 8rem 5%;
    background-image: url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?w=1600&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
}

.final-cta-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,24,16,0.85) 0%, rgba(139,69,19,0.75) 100%);
}

.final-cta-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.final-cta-overlay p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 6px;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #c99558;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.footer-split {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col 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.15);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.page-hero-minimal {
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle-about {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.story-content-narrow {
    max-width: 820px;
    margin: 0 auto;
}

.story-content-narrow h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.story-content-narrow h2:first-child {
    margin-top: 0;
}

.story-content-narrow p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-image {
    width: 100%;
    margin: 3rem 0;
    border-radius: 8px;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    align-items: stretch;
}

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

.service-detail-left {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-detail-right {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.meta-duration,
.meta-level {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.service-topics ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-topics ul li {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
}

.service-price-large {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.enrollment-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    text-align: center;
    color: var(--white);
}

.enrollment-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.contact-layout {
    padding: 4rem 5%;
    background-color: var(--white);
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-detail {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-small {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1.2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

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

.contact-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44,24,16,0.95) 0%, rgba(44,24,16,0.7) 70%, transparent 100%);
    padding: 2.5rem;
    color: var(--white);
}

.contact-overlay-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-overlay-info p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.map-section {
    padding: 4rem 5%;
    background-color: var(--bg-cream);
    text-align: center;
}

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

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    border-radius: 10px;
    border: 2px dashed var(--border-color);
}

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

.legal-page {
    padding: 4rem 5%;
    background-color: var(--white);
    min-height: 60vh;
}

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

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

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

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

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

.legal-content ul li {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-table thead {
    background-color: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

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

.thanks-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-selected-message {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    margin: 2.5rem 0;
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 8px;
}

.thanks-next-steps h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.thanks-next-steps ul {
    padding-left: 1.5rem;
}

.thanks-next-steps ul li {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

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

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

.btn-primary:hover {
    background-color: #6d3410;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

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

.btn-secondary:hover {
    background-color: #c99558;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

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

    .hero-left,
    .hero-right {
        flex: none;
    }

    .hero-right {
        height: 400px;
    }

    .benefits-asymmetric {
        flex-direction: column;
    }

    .benefit-card-large,
    .benefit-card-small {
        flex: 1 1 100%;
    }

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

    .form-container-split {
        flex-direction: column;
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-text-narrow h2 {
        font-size: 1.8rem;
    }

    .section-header-centered h2 {
        font-size: 2rem;
    }

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

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

    .testimonial-card {
        flex: 1 1 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .page-hero-minimal h1 {
        font-size: 2.3rem;
    }

    .thanks-content {
        padding: 3rem 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-left {
        padding: 3rem 5%;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .cookie-content {
        padding: 0;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
        min-width: 120px;
    }
}