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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #2d5f3f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a26;
}

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

.ad-disclosure {
    background-color: #e8e8e3;
    color: #5a5a5a;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid #d0d0ca;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 2px solid #e0e0db;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5f3f;
}

.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding-right: 2rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.3rem;
    color: #4a4a4a;
}

.hero-image-block {
    flex: 1;
    background-color: #e8e8e3;
}

.hero-image-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro-magazine {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.intro-layout {
    display: flex;
    gap: 4rem;
}

.intro-column-left {
    flex: 1.5;
}

.intro-column-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.intro-column-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-column-right {
    flex: 1;
    background-color: #f5f5f0;
    padding: 1.5rem;
}

.intro-column-right img {
    width: 100%;
    height: 350px;
    margin-bottom: 1rem;
}

.caption-text {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
}

.problem-section {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

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

.problem-container h2 {
    color: #ffffff;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.problem-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-left: 4px solid #8fbc8f;
}

.problem-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #e8e8e3;
    font-size: 1.05rem;
}

.insight-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.insight-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: #e8e8e3;
}

.insight-image img {
    width: 100%;
    height: 450px;
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.insight-content p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.insight-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a3a26;
    color: #ffffff;
}

.testimonial-inline {
    background-color: #f5f5f0;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

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

.testimonial-quote {
    text-align: center;
}

.testimonial-quote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: #3a3a3a;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5f3f;
}

.services-reveal {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.services-header p {
    font-size: 1.2rem;
    color: #5a5a5a;
}

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

.service-feature-card {
    flex: 0 0 calc(50% - 1.25rem);
    background-color: #ffffff;
    border: 1px solid #e0e0db;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-feature-card img {
    width: 100%;
    height: 280px;
    background-color: #e8e8e3;
}

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

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    flex: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0db;
}

.duration {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5f3f;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.booking-section {
    background-color: #f5f5f0;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

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

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

.booking-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-intro p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.booking-form {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e0e0db;
}

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

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

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    border: 1px solid #d0d0ca;
    background-color: #fafaf8;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a3a26;
}

.disclaimer-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.disclaimer-content {
    background-color: #f5f5f0;
    padding: 2rem;
    border-left: 4px solid #2d5f3f;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0;
}

.main-footer {
    background-color: #2a2a2a;
    color: #d0d0ca;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2d5f3f;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #4a4a4a;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #e0e0db;
    color: #2a2a2a;
}

.cookie-btn.reject:hover {
    background-color: #d0d0ca;
}

.about-hero {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: #e8e8e3;
}

.about-story {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.story-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-color: #e8e8e3;
}

.story-image img {
    width: 100%;
    height: 400px;
}

.team-section {
    background-color: #f5f5f0;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

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

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

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

.team-member {
    flex: 0 0 calc(50% - 1.25rem);
    background-color: #ffffff;
    padding: 2rem;
    border-left: 3px solid #2d5f3f;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.team-member p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.philosophy-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.philosophy-columns {
    display: flex;
    gap: 2.5rem;
}

.philosophy-col {
    flex: 1;
}

.philosophy-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.philosophy-col p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.values-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.values-image {
    flex: 1;
    background-color: #e8e8e3;
}

.values-image img {
    width: 100%;
    height: 450px;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.values-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-page-hero {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.services-hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
    color: #e8e8e3;
}

.services-detailed {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.services-intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8e8e3;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.service-info-row {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0db;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin-bottom: 0.3rem;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.info-value.price-highlight {
    font-size: 1.5rem;
    color: #2d5f3f;
}

.booking-cta-section {
    background-color: #f5f5f0;
    padding: 5rem 2rem;
    text-align: center;
    margin: 5rem 0;
}

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

.booking-cta-content p {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #1a3a26;
    color: #ffffff;
}

.contact-page-hero {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: #e8e8e3;
}

.contact-info-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

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

.contact-details-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: #2d5f3f;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #6a6a6a;
    margin-top: 0.8rem;
}

.contact-image-block {
    flex: 1;
    background-color: #e8e8e3;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-additional-info {
    background-color: #f5f5f0;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

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

.additional-info-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 0 0 calc(50% - 1.25rem);
    background-color: #ffffff;
    padding: 2rem;
    border-left: 3px solid #2d5f3f;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-cta {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.thanks-page {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-container {
    text-align: center;
    background-color: #f5f5f0;
    padding: 4rem 3rem;
    border: 1px solid #e0e0db;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

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

.thanks-message p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

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

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

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

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-top: 4px solid #2d5f3f;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

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

.thanks-button {
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.thanks-button.primary {
    background-color: #2d5f3f;
    color: #ffffff;
}

.thanks-button.primary:hover {
    background-color: #1a3a26;
    color: #ffffff;
}

.thanks-button.secondary {
    background-color: #e0e0db;
    color: #2a2a2a;
}

.thanks-button.secondary:hover {
    background-color: #d0d0ca;
}

.thanks-reminder {
    background-color: #ffffff;
    padding: 1.5rem;
    border-left: 4px solid #2d5f3f;
}

.thanks-reminder p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0db;
}

.cookies-table th {
    background-color: #f5f5f0;
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.cookies-table td {
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-content-split,
    .intro-layout,
    .insight-wrapper,
    .story-layout,
    .values-container,
    .contact-layout,
    .service-detail-block {
        flex-direction: column;
    }

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

    .problem-grid,
    .philosophy-columns,
    .steps-grid {
        flex-direction: column;
    }

    .services-magazine-layout .service-feature-card,
    .team-grid .team-member,
    .faq-grid .faq-item {
        flex: 0 0 100%;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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