@font-face {
    font-family: 'Playfair Display';
    src: url('./fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'Dancing Script';
    src: url('./fonts/DancingScript-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }  

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    touch-action: manipulation;   
}

html {
    overflow-y: scroll;
}

/* Global Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative; /* Make the hero section a reference for absolute positioning */    
    background: url('./images/einfach-meditieren-ocean.webp') no-repeat center center/cover;
    text-align: center;
    color: rgb(82, 62, 39);
    padding: 4vh 2rem 20vh; /* Adjusted padding to move text higher */
    position: relative;
    min-height: 600px; /* Default minimum height for large screens */    
}

.hero-section h1 {
    font-weight: 400;
    font-style: normal;
    color: rgb(82, 62, 39);
    font-kerning: none;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0em;
    text-transform: uppercase;
    list-style-type: none;
    text-align: center;
    overflow-wrap: normal;    
    margin-bottom: 1vh; /* Responsive margin */    
    position: absolute; /* Allows 'top' to work */
    top: 10%; /* Adjust this percentage to position text above the horizon */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */    
}

.hero-section h2 {
    font-weight: 400;
    font-style: normal;
    color: rgb(82, 62, 39);
    font-kerning: none;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    line-height: 66px;
    letter-spacing: -0.04em;
    text-transform: none;
    list-style-type: none;    
    text-align: center;    
    overflow-wrap: normal;    
    margin-bottom: 1vh;
    position: absolute; /* Allows 'top' to work */
    top: 35%; /* Adjust this percentage to position text above the horizon */
    left: 50%;    
    transform: translateX(-50%); /* Center horizontally */        
    white-space: nowrap;    
}

.hero-section p {
    font-weight: 400;
    font-style: normal;
    color: rgb(82, 62, 39);
    font-kerning: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    font-size: 24px;
    letter-spacing: 0em;
    text-transform: none;
    list-style-type: none;    
    margin-top: 1vh;    
    position: absolute; /* Allows 'top' to work */
    top: 47%; /* Adjust this percentage to position text above the horizon */
    left: 50%;    
    transform: translateX(-50%); /* Center horizontally */        
}

/* About Section */
.about-section {
    background-color: #e8cebf;
    padding: 4rem 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content */
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; /* Center text */
    gap: 2rem;
}

.about-image {
    width: 400px;  /* Adjusted size to closely resemble screenshot */
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    color: rgb(82, 62, 39);
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 250;
    text-align: left;
}

.about-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    line-height: 1.4;      
    text-align: left;
    font-weight: 50;
    color: rgb(82, 62, 39);
}

.about-text .signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #8B4B62;
    margin-top: 1rem;
    font-weight: 700;
    text-align: center;
}

/* Workshop Banner */
.workshop-banner-section {
    background-color: #e8cebf;
    padding: 1rem 2rem 0;
}

.workshop-banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(139, 75, 98, 0.25);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 247, 241, 0.96), rgba(232, 206, 191, 0.98));
    box-shadow: 0 18px 40px rgba(82, 62, 39, 0.08);
}

.workshop-banner-copy {
    max-width: 760px;
}

.workshop-banner-side {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.workshop-banner-eyebrow {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8B4B62;
    margin-bottom: 0.75rem;
}

.workshop-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.05;
    color: rgb(82, 62, 39);
    margin-bottom: 1rem;
}

.workshop-banner-copy p:last-child {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgb(82, 62, 39);
}

.workshop-banner-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
}

.workshop-banner-date {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    color: rgb(82, 62, 39);
    background-color: rgba(255, 255, 255, 0.55);
    padding: 0.75rem 1rem;
    border-radius: 999px;
}

.workshop-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 1rem 1.75rem;
    border-radius: 999px;
    background-color: #8B4B62;
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.workshop-banner-button:hover {
    background-color: #6d3b4d;
    transform: translateY(-1px);
}

.workshop-banner-image {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(82, 62, 39, 0.16));
}

/* Practices Section */
.practices-section {
    padding: 4rem 2rem;
    background-color: #e8cebf;
}

.practices-section h2 {
    text-align: center;
    color: rgb(82, 62, 39);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.practice-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 440px));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}

.practice-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 440px;
    height: 100%;
}

.practice-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.practice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Container for text content */
.practice-text-wrapper {
    border: 2px solid #D3B5A9;
    background-color: #e8cebf;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.practice-item h3
{
    padding: 1rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
    background-color: #e8cebf;
    font-size: 1.6rem;       
    color: rgb(82, 62, 39);
}

.practice-item p {
    padding: 1rem;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;       
    line-height: 1.4;    
    background-color: #e8cebf;
    color: rgb(82, 62, 39);
    padding-top: 0;
    border-top: none;
 
}

.practice-item h3 {
    padding-bottom: 0.5rem;
    border-bottom: none;
}


/* Offerings Section */
.offerings-section {
    background-image: url('./images/meditation-wellen.webp');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    color: #4A4A4A;
    position: relative; /* For pseudo-element positioning */
}

/* Add semi-transparent beige/pink overlay */
.offerings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(232, 206, 191, 0.75); /* Changed to #e8cebf with opacity */
    z-index: 1;
}

/* Ensure content stays above the overlay */
.offerings-section h2,
.offering-items {
    position: relative;
    z-index: 2;
}

.offerings-section h2 {
    text-align: center;
    color: rgb(82, 62, 39);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.offering-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    position: relative;
    padding-bottom: 60px;
}

.offering-item h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;       
    color: rgb(82, 62, 39);
    width: 100%;
}

.offering-item p {
    margin-bottom: 2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;     
    color: rgb(82, 62, 39);
    line-height: 1.4;    

}

.offering-item .button {
    background-color: #8B4B62;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: background-color 0.3s ease;
    font-family: 'Roboto', serif;
    position: absolute;
    bottom: 0;
    width: 200px; /* Fixed width for all buttons */
    height: 70px; /* Fixed height for all buttons */
    display: flex;
    align-items: center;
    justify-content: center; /* Center text vertically and horizontally */
}

.offering-item .button:hover {
    background-color: #6d3b4d;
}

/* Footer Section */
.footer {
    background-color: #8B4B62;
    color: #fff;
    text-align: left;
    padding: 4rem 2rem;
}

.footer h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.impressum-container {
    margin-top: 6rem;  /* mehr Abstand vor dem Impressum */
}

.impressum-container h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.5;
}

.contact-info {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 300;
    opacity: 0.5;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-section {    
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {    
        min-height: 500px;
    }    

    /* About Section */
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h3,
    .about-text p {
        text-align: center;
    }

    .workshop-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .workshop-banner-side {
        width: 100%;
        justify-content: space-between;
    }

    .workshop-banner h2 {
        font-size: 2.3rem;
    }

    .workshop-banner-meta {
        width: 100%;
        align-items: flex-start;
    }

    /* Practice Section */
    .practice-items {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .practice-item {
        max-width: 440px;
    }

    .practice-item p {
        font-size: 1.2rem;
    }

    /* Offerings Section */
    .offering-items {
        grid-template-columns: 1fr;
        max-width: 600px;
        padding: 0 2rem;
    }
    
    .offering-item {
        margin-bottom: 2rem;
        max-width: 100%;
        padding-bottom: 40px;
    }

    /* Footer */
    .footer {
        padding: 3rem 1.5rem;
    }
    
    .footer h2 {
        margin-bottom: 3rem;
    }

    /* Section Headers */
    .practices-section h2,
    .offerings-section h2 {
        font-size: 2rem;
    }

    /* Yoga Promo */
    .yoga-promo {
        grid-template-columns: 1fr;
    }
    
    .yoga-promo-image {
        min-height: 400px;
        order: 0;
    }
    
    .yoga-promo-content {
        padding: 2rem;
        text-align: center;
        order: 1;
    }
    
    .yoga-promo-content h2 {
        font-size: 2rem;
    }
    
    .yoga-promo .button {
        margin: 2rem auto 0;
    }

    /* Workshops */
    .workshops-section {
        flex-direction: column;
    }
    
    .workshops-content {
        order: 1;
    }
    
    .workshops-images {
        order: 2;
        width: 100%;
    }

    /* Separator */
    .separator-image {
        height: 200px;
    }

}

@media (max-width: 480px) {
    /* Hero Section */
    .hero-section {    
        min-height: 500px;
    }    
    
    .hero-section p {
        font-size: 18px;
    }

    .about-image {
        width: 300px;  /* Adjusted size to closely resemble screenshot */
        height: 300px;
    }

    .workshop-banner-section {
        padding: 1rem 1rem 0;
    }

    .workshop-banner {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .workshop-banner-side {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .workshop-banner h2 {
        font-size: 1.9rem;
    }

    .workshop-banner-copy p:last-child,
    .workshop-banner-date {
        font-size: 1rem;
    }

    .workshop-banner-button {
        width: 100%;
    }

    .workshop-banner-image {
        width: 180px;
        height: 180px;
    }

    /* Practice Section */
    .practice-items {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    /* Section Headers */
    .practices-section h2,
    .offerings-section h2 {
        font-size: 1.8rem;
    }

    /* Yoga Promo */
    .yoga-promo-content h2 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .yoga-promo-content p {
        font-size: 1.2rem;
    }
}

.impressum-container {
    position: relative;
    display: inline-block;
}

.impressum-trigger {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

.impressum-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: #8B4B62;
    padding: 2rem;
    min-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

.impressum-container:hover .impressum-content {
    visibility: visible;
    opacity: 1;
}

/* Optional: Pfeil nach unten */
.impressum-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #8B4B62 transparent transparent;
}

/* Yoga Course Promo Section */
.yoga-promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #e8cebf;
}

.yoga-promo-image {
    background: url('./images/ganesha.webp') no-repeat center;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 768px) {
    .yoga-promo {
        grid-template-columns: 1fr;
    }
    
    .yoga-promo-image {
        min-height: 400px;
        order: 0;
    }
    
    .yoga-promo-content {
        padding: 2rem;
        text-align: center;
        order: 1;
    }
}

.yoga-promo-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yoga-promo-content h4 {
    font-family: 'Playfair Display', serif;
    color: #8B4B62;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.yoga-promo-content h2 {
    font-family: 'Playfair Display', serif;
    color: rgb(82, 62, 39);
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.yoga-promo-content p {
    font-family: 'Roboto', sans-serif;
    color: rgb(82, 62, 39);
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.yoga-promo .button {
    display: inline-block;
    background-color: #8B4B62;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: 'Roboto', serif;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.yoga-promo .button:hover {
    background-color: #6d3b4d;
}

/* Media Queries for Yoga Promo Section */
@media (max-width: 768px) {
    .yoga-promo {
        grid-template-columns: 1fr;
    }
    
    .yoga-promo-image {
        min-height: 400px;
        order: 0;
    }
    
    .yoga-promo-content {
        padding: 2rem;
        text-align: center;
        order: 1;
    }
    
    .yoga-promo-content h2 {
        font-size: 2rem;
    }
    
    .yoga-promo .button {
        margin: 2rem auto 0;
    }
}

@media (max-width: 480px) {

    .hero-section {
        background: url('./images/einfach-meditieren-ocean-mobile.webp') no-repeat center center/cover;
    }

    .hero-section h2 {
        font-size: 50px;
        line-height: 50px;
        top: 25%; /* Adjust this percentage to position text above the horizon */
        white-space: wrap;    
    }    

    .yoga-promo-content h2 {
        font-size: 1.8rem;
    }
    
    .yoga-promo-content p {
        font-size: 1.2rem;
        line-height: 1.4;        
    }

    .workshops-content p {
        font-size: 1.2rem;
        line-height: 1.4;
    }    
}

/* Workshops Section */
.workshops-section {
    display: flex;
    flex-wrap: wrap;
}

.workshops-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #e8cebf;
}

.workshops-content h2 {
    font-family: 'Playfair Display', serif;
    color: rgb(82, 62, 39);
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.workshops-content h3 {
    font-family: 'Roboto', sans-serif;
    color: #8B4B62;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.workshops-content p {
    font-family: 'Roboto', sans-serif;
    color: rgb(82, 62, 39);
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.workshops-images {
    flex: 1;
    margin: 0;
    padding: 0;
}

.workshops-image {
    width: 100%;
    height: 100%;  /* This will make the image fill the full height of its container */
    object-fit: cover;  /* This ensures the image maintains its aspect ratio while filling the space */
}

.workshops-button {
    display: inline-block;
    background-color: #8B4B62;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: 'Roboto', serif;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.workshops-button:hover {
    background-color: #6d3b4d;
}

.booking-card {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255, 248, 243, 0.9);
    border: 1px solid rgba(139, 75, 98, 0.18);
}

.booking-card-header h3 {
    font-family: 'Playfair Display', serif;
    color: rgb(82, 62, 39);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.booking-card-eyebrow {
    margin-bottom: 0.5rem;
    color: #8B4B62;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
}

.booking-card-meta {
    margin-bottom: 1.5rem;
}

.booking-status {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    margin-bottom: 1.5rem;
}

.booking-status p {
    margin: 0;
}

.booking-status-success {
    background-color: rgba(115, 154, 104, 0.16);
    border: 1px solid rgba(115, 154, 104, 0.28);
}

.booking-status-error {
    background-color: rgba(139, 75, 98, 0.10);
    border: 1px solid rgba(139, 75, 98, 0.22);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.booking-form label,
.booking-payment {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-family: 'Roboto', sans-serif;
    color: rgb(82, 62, 39);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid rgba(82, 62, 39, 0.18);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgb(82, 62, 39);
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-choice,
.booking-consent {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem !important;
}

.booking-choice input,
.booking-consent input {
    width: auto;
    margin-top: 0.25rem;
}

.booking-form-message {
    gap: 0.65rem !important;
}

.booking-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.booking-note {
    margin: 0;
    font-size: 1rem !important;
}

.booking-submit {
    border: none;
    border-radius: 999px;
    background-color: #8B4B62;
    color: white;
    padding: 1rem 1.75rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.booking-submit:hover {
    background-color: #6d3b4d;
    transform: translateY(-1px);
}

.booking-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.booking-page {
    max-width: 920px;
    padding: 3rem 0 5rem;
}

.booking-page-main {
    padding: 0 1rem;
}

.booking-page-back {
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
}

.booking-page-back a {
    color: rgb(82, 62, 39);
    text-decoration: none;
}

.booking-page-back a:hover {
    text-decoration: underline;
}

.booking-card-page h1 {
    font-family: 'Playfair Display', serif;
    color: rgb(82, 62, 39);
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

/* Media Queries */
@media (max-width: 768px) {
    .workshops-section {
        flex-direction: column;
    }
    
    .workshops-content {
        order: 1;
    }
    
    .workshops-images {
        order: 2;
        width: 100%;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-submit {
        width: 100%;
    }

    .booking-page {
        padding: 2rem 0 4rem;
    }

    .booking-card-page h1 {
        font-size: 2.1rem;
    }
}

.separator-image {
    width: 100vw;
    height: 842px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .separator-image {
        height: 400px;
    }
}

/* Assuming HERZCHAKRA is in a section, adjust its margin */
.herzchakra-section {
    margin: 0;
    padding: 0;
    background-color: #8B4B62;
}

/* Remove any default margins from the heading */
.herzchakra-section h2 {
    margin: 0;
    padding: 2rem;  /* Keep some internal padding for the text */
}

/* Make sure images are displayed as blocks with no spacing */
img {
    display: block;
    line-height: 0;
}

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
    background-color: #e8cebf;
}

.privacy-policy h1 {
    font-family: 'Playfair Display', serif;
    color: rgb(82, 62, 39);
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.privacy-policy h2 {
    font-family: 'Roboto', sans-serif;
    color: #8B4B62;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-policy p {
    font-family: 'Roboto', sans-serif;
    color: rgb(82, 62, 39);
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 2rem;
    }
    
    .privacy-policy h1 {
        font-size: 2rem;
    }
}

footer a {
    color: inherit; /* This will use the same color as the footer text */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 300;
    opacity: 0.5;
    margin-top: 2rem;
}

.privacy-policy ul {
    list-style-type: disc !important; /* Force bullet points */
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.privacy-policy ul li {
    display: list-item !important; /* Explicitly set list item display */
    margin-bottom: 0.5rem;
    color: rgb(82, 62, 39);
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
}

.mobile-title {
    display: none;
}

.desktop-title {
    display: block;
}

@media screen and (max-width: 768px) {
    .mobile-title {
        display: block;
    }
    .desktop-title {
        display: none;
    }
}
