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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f6f3;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
    --accent-color: #9b8b7e;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--background-white);
}

.ad-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-light);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    text-align: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 2rem;
    bottom: 0;
    width: 240px;
    background-color: var(--background-white);
    border-right: 1px solid var(--border-color);
    padding: 3rem 0 2rem;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 2rem;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    display: block;
    padding: 0.75rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.nav-footer-links {
    padding: 1.5rem 2rem 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.main-content {
    margin-left: 240px;
    margin-top: 2rem;
    padding: 2rem 3rem;
    min-height: 100vh;
}

.hero-magazine {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.hero-text-column {
    flex: 1;
    max-width: 500px;
}

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

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

.hero-image-column {
    flex: 1.2;
    position: relative;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--background-light);
}

.cta-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.25rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.editorial-intro {
    background-color: var(--background-light);
    padding: 4rem 0;
    margin-bottom: 5rem;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.narrow-column h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
}

.narrow-column p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-visual {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.split-left {
    flex: 1;
}

.split-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--background-light);
}

.split-right {
    flex: 1;
    padding-top: 2rem;
}

.split-right h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.service-brief {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-brief:last-of-type {
    border-bottom: none;
}

.service-brief h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

.price-tag {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid var(--text-dark);
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 1rem;
}

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

.multi-column-feature {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.feature-col {
    flex: 1;
}

.feature-col img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: var(--background-light);
}

.feature-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-section {
    background-color: var(--background-light);
    padding: 5rem 3rem;
    margin-bottom: 5rem;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

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

.consultation-form {
    background-color: var(--background-white);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.service-selection h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.service-option:hover {
    border-color: var(--primary-color);
    background-color: var(--background-light);
}

.service-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.option-label {
    font-size: 1.05rem;
    cursor: pointer;
}

.form-fields {
    margin-top: 2rem;
}

.form-group {
    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 textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.trust-indicators {
    margin-bottom: 5rem;
}

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

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.process-overview {
    margin-bottom: 5rem;
}

.process-overview h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.process-step {
    flex: 0 0 calc(33.333% - 2rem);
    padding: 2rem;
    background-color: var(--background-light);
}

.step-number {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.final-cta {
    background-color: var(--primary-color);
    padding: 5rem 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.final-cta .cta-content h2 {
    color: var(--background-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.final-cta .cta-content p {
    color: var(--background-white);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.final-cta .btn-primary:hover {
    background-color: var(--background-light);
}

.site-footer {
    margin-left: 240px;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 4rem 3rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--background-white);
    font-weight: 600;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-color);
}

.disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 240px;
    right: 0;
    background-color: var(--background-white);
    border-top: 2px solid var(--border-color);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

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

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

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

.btn-reject:hover {
    background-color: var(--background-light);
}

.page-header {
    margin-bottom: 4rem;
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--background-light);
}

.service-details {
    flex: 1;
    padding-top: 1rem;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

.service-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-pricing .price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #1f4520;
}

.about-intro-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--background-light);
}

.philosophy-section {
    background-color: var(--background-light);
    padding: 4rem 0;
    margin-bottom: 5rem;
}

.team-section {
    margin-bottom: 5rem;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

.team-grid {
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: var(--background-light);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

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

.values-section {
    margin-bottom: 5rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.value-item {
    flex: 0 0 calc(50% - 1.5rem);
    padding: 2rem;
    background-color: var(--background-light);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.process-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.process-text {
    flex: 1.3;
}

.process-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.process-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.process-image {
    flex: 1;
}

.process-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--background-light);
}

.workshop-section {
    margin-bottom: 5rem;
}

.workshop-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

.workshop-content img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 2rem;
    background-color: var(--background-light);
}

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

.workshop-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    background-color: var(--background-light);
    padding: 5rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.cta-about .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.contact-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.detail-item p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.detail-item .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: var(--background-light);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 1.5rem;
}

.map-overlay p {
    color: var(--background-white);
    font-size: 0.95rem;
    line-height: 1.6;
}

.visit-info {
    background-color: var(--background-light);
    padding: 4rem 0;
    margin-bottom: 5rem;
}

.contact-cta {
    background-color: var(--primary-color);
    padding: 5rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-cta .cta-content h2 {
    color: var(--background-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-cta .cta-content p {
    color: var(--background-white);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.contact-cta .btn-primary:hover {
    background-color: var(--background-light);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.service-confirmation {
    background-color: var(--background-light);
    padding: 1.5rem;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
    background-color: var(--background-light);
    padding: 2rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 3rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: var(--background-white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.legal-content {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-content h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.legal-content h2 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.legal-content h3 {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.legal-content h4 {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

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

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

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

@media screen and (max-width: 1024px) {
    .nav-sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .site-footer {
        margin-left: 200px;
    }

    .cookie-banner {
        left: 200px;
    }
}

@media screen and (max-width: 768px) {
    .nav-sidebar {
        width: 60px;
        padding-top: 3rem;
    }

    .nav-brand,
    .nav-footer-links {
        display: none;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .main-content {
        margin-left: 60px;
        padding: 1.5rem;
    }

    .site-footer {
        margin-left: 60px;
    }

    .cookie-banner {
        left: 60px;
    }

    .hero-magazine,
    .split-visual,
    .multi-column-feature,
    .service-card,
    .about-intro-split,
    .team-grid,
    .process-detail,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .process-step {
        flex: 1;
    }

    .value-item {
        flex: 1;
    }

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