:root {
    --primary-color: #264D3B;
    --secondary-color: #73A24E;
    --light-green: #A8C889;
    --bg-color: #FCFCFC;
    --text-color: #333333;
    --heading-font: 'Cinzel', serif;
    --body-font: 'Fauna One', serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0.8rem auto;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

section {
    padding: 4rem 1rem;
    position: relative;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: #1a3c2e;
}

.btn-secondary:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav a {
    font-family: var(--heading-font);
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.programs {
    background-color: #F5F7F2;
    position: relative;
}

.program-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.program-card p {
    margin-bottom: 1.5rem;
}

.program-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.program-card ul li {
    position: relative;
    margin-bottom: 0.5rem;
    list-style-type: none;
}

.program-card ul li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    position: absolute;
    left: -1.5rem;
    top: 8px;
}

.program-card a {
    margin-top: auto;
    align-self: center;
}

.benefits {
    background-color: white;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-item img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.benefit-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-text {
    width: 55%;
}

.benefit-text h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.techniques {
    background-color: #F5F7F2;
    position: relative;
}

.techniques-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.technique-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: var(--transition);
}

.technique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.technique-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.technique-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.technique-examples {
    margin-top: 1.5rem;
}

.technique-examples h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.technique-examples ul {
    padding-left: 1.5rem;
}

.technique-examples ul li {
    position: relative;
    margin-bottom: 0.3rem;
}

.technique-examples ul li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    position: absolute;
    left: -1.2rem;
    top: 8px;
}

.mudra-gallery {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.mudra-gallery h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.mudra-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.mudra-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mudra-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mudra-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.mudra-item h4 {
    padding: 1rem 1.5rem 0.5rem;
    text-align: center;
}

.mudra-item p {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.testimonials {
    background-color: white;
    position: relative;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #F5F7F2;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-content {
    flex: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-top: 0.5rem;
}

.contact {
    background-color: #F5F7F2;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form form {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--body-font);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(115, 162, 78, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

.contact-form button {
    width: 100%;
}

.infographic {
    padding: 4rem 1rem;
    background-color: white;
}

.yoga-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.yoga-type {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #F5F7F2;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.yoga-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.yoga-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.yoga-type h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.yoga-type ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.yoga-type ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.yoga-type ul li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    position: absolute;
    left: -1.2rem;
    top: 8px;
}

.gallery {
    padding: 4rem 1rem;
    background-color: #F5F7F2;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    padding: 1rem;
    transition: var(--transition);
}

.footer-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.footer-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-item ul li {
    margin-bottom: 0.5rem;
}

.footer-item a {
    color: #e0e0e0;
    transition: var(--transition);
}

.footer-item a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .benefit-item, .benefit-item.reverse {
        flex-direction: column;
    }
    
    .benefit-item img, .benefit-text {
        width: 100%;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .program-card, .technique-card, .mudra-item, .testimonial-card, .yoga-type {
        min-width: 100%;
    }
    
    .contact-info, .contact-form {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .mudra-container, .testimonials-container {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 375px) {
    header {
        padding: 0.8rem;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    nav ul {
        gap: 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    section {
        padding: 2.5rem 0.8rem;
    }
    
    .testimonial-card img {
        width: 80px;
        height: 80px;
    }
}

.thank-you {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.thank-you-content {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
}

.thank-you p {
    margin-bottom: 2rem;
}

.policy-page {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-page h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.policy-page h2 {
    margin-top: 2.5rem;
    text-align: left;
}

.policy-page h2::after {
    margin: 0.8rem 0;
}

.policy-page p {
    margin-bottom: 1.5rem;
}

.policy-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-page ul li {
    position: relative;
    margin-bottom: 0.8rem;
}

.policy-page ul li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    position: absolute;
    left: -1.5rem;
    top: 8px;
}

.policy-page .home-button {
    margin-top: 2rem;
    text-align: center;
}

.favicon {
    display: none;
}

.mandala-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    z-index: -1;
}

.mandala-top-right {
    top: 100px;
    right: 50px;
}

.mandala-bottom-left {
    bottom: 100px;
    left: 50px;
}

.om-symbol {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.08;
    z-index: -1;
}

.om-top-left {
    top: 150px;
    left: 100px;
}

.om-bottom-right {
    bottom: 150px;
    right: 100px;
}