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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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);
    overflow-x: hidden;
}

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

a:hover {
    opacity: 0.7;
}

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

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

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

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

.hero-minimal {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
}

.hero-title-large {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-subtitle-space {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 4rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-minimal {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg-white);
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-minimal:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    opacity: 1;
}

.cta-minimal-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--bg-white);
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-minimal-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

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

.content-spacious {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

.text-block-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-large {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-dark);
}

.image-section-full {
    padding: 0;
    margin: 8rem 0;
}

.full-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

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

.philosophy-grid {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-text {
    flex: 1;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.section-title-minimal {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.text-spacious {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.services-title-center {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: -0.5px;
}

.services-list-minimal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-card-spacious {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-card-spacious:last-child {
    border-bottom: none;
}

.service-number {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.service-name {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
}

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

.cta-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    background-color: transparent;
    border: 2px solid var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-service:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

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

.quote-large {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-style: italic;
}

.quote-author {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 5rem;
}

.step-minimal {
    padding-left: 3rem;
    border-left: 2px solid var(--primary-color);
}

.step-minimal h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

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

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

.form-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
}

.form-minimal {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    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-minimal {
    padding: 1.4rem 3rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--bg-white);
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.btn-submit-minimal:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-sticky-section {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 50;
}

.cta-sticky {
    display: block;
    padding: 1.2rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bg-white);
    background-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-sticky:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.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: 200;
    display: none;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-cookie {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

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

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

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

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

.page-hero-minimal {
    padding: 10rem 5% 6rem;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    text-align: center;
}

.page-title-large {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

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

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

.story-grid {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
}

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

.story-text {
    flex: 1;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-section {
    padding: 10rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

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

.workshop-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.service-detail-card {
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding-bottom: 8rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

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

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

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

.service-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 2rem;
}

.service-detailed-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.5rem 0;
}

.feature-item {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.service-pricing {
    margin: 2rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-color);
}

.process-detailed {
    padding: 10rem 5%;
    background-color: var(--bg-light);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 5rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.timeline-step h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.timeline-step p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-section-centered {
    padding: 8rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

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

.contact-grid {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

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

.info-item {
    margin-bottom: 3rem;
}

.info-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.info-item a {
    color: var(--primary-color);
}

.info-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

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

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

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

.map-section {
    padding: 0;
    margin: 6rem 0;
}

.map-placeholder {
    width: 100%;
    height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-contact {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

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

.faq-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

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

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

.thanks-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

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

.service-selected {
    margin: 2rem 0;
}

.service-highlight {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.service-highlight strong {
    font-weight: 600;
}

.thanks-note {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.next-steps {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

.steps-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.step-card {
    flex: 1;
    padding: 3rem 2rem;
    background-color: var(--bg-white);
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

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

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

.legal-container h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

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

.legal-date {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    opacity: 0.7;
}

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

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

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

.gdpr-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    font-size: 1rem;
}

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

.warning-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }

    .philosophy-grid,
    .story-grid,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
        gap: 3rem;
    }

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

    .steps-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .cta-sticky-section {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-minimal {
        min-height: 70vh;
        padding: 4rem 5%;
    }

    .content-spacious,
    .philosophy-section,
    .services-premium,
    .testimonial-minimal,
    .process-section,
    .form-section-centered,
    .about-intro,
    .story-section,
    .values-section,
    .team-section,
    .quote-section,
    .workshop-section,
    .services-detailed,
    .process-detailed,
    .cta-section-centered,
    .contact-info-section,
    .visit-section,
    .faq-contact,
    .final-cta-contact,
    .thanks-section,
    .next-steps,
    .legal-page {
        padding: 5rem 5%;
    }

    .page-hero-minimal {
        padding: 6rem 5% 4rem;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card {
        min-width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

    .cta-sticky-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .service-features {
        flex-direction: column;
    }

    .feature-item {
        width: 100%;
    }
}