/* Global Styles */
:root {
    --primary-color: #2c5e31;
    --secondary-color: #8e6fb5;
    --accent-color: #cad456;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: #ffffff;
    --light-background: #f5f5f5;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poiret One', cursive;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header */
header {
    background-color: var(--background-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Poiret One', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo svg {
    margin-right: 0.8rem;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 1.5rem;
    position: relative;
}

nav ul li a {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Wave Dividers */
.wave-divider {
    position: relative;
    height: 100px;
    width: 100%;
    z-index: 1;
}

.wave-divider.reverse {
    transform: rotate(180deg);
}

.wave-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.wave-divider.footer-wave {
    height: 150px;
    margin-bottom: -2px;
}

.wave-divider.special-wave svg path {
    fill: #f0f5f0;
}

.wave-divider.alternative-wave svg path {
    fill: #f5f0f5;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-image.webp');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: rgba(44, 94, 49, 0.7);
    box-shadow: var(--box-shadow);
    animation: fadeIn 1.5s ease-in-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(142, 111, 181, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 0 15px rgba(44, 94, 49, 0.5);
    transform: translateY(-3px);
}

/* Section Styles */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-heading h2 {
    display: inline-block;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.decorative-element {
    display: block;
    margin: 0.5rem auto;
}

/* About Section */
.about-section {
    background-color: var(--light-background);
    padding: 4rem 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--background-color);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

/* Programs Section */
.programs-section {
    background-color: var(--light-background);
    padding: 4rem 0;
}

.programs-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-card h3, .program-card p, .program-card ul, .program-card a {
    padding: 0 1.5rem;
}

.program-card h3 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.program-card ul {
    list-style-type: none;
    margin: 1.5rem 0;
}

.program-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.program-card ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.program-card a {
    display: inline-block;
    margin: 1.5rem;
}

/* Instructors Section */
.instructors-section {
    background-color: var(--background-color);
    padding: 4rem 0;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.instructor-card {
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.instructor-image {
    height: 250px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.instructor-info {
    padding: 1.5rem;
}

.instructor-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.instructor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.instructor-specialties span {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-background);
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 250px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Mandala Section */
.mandala-section {
    background-color: var(--background-color);
    padding: 4rem 0;
}

.mandala-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.mandala-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.mandala-svg {
    max-width: 100%;
    height: auto;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.mandala-explanation {
    flex: 2;
    min-width: 300px;
}

.mandala-symbols {
    margin-top: 2rem;
}

.symbol-explanation {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.symbol-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-background);
    padding: 4rem 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-schedule {
    margin-top: 2rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.schedule-day {
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.schedule-day span:first-child {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(142, 111, 181, 0.3);
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.form-checkbox label {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    position: relative;
}

.footer-content {
    padding: 3rem 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo {
    font-family: 'Poiret One', cursive;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo svg {
    margin-right: 0.8rem;
}

.footer-links h4,
.footer-policy h4,
.footer-chakras h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-policy ul {
    list-style: none;
    margin: 0;
}

.footer-links ul li,
.footer-policy ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a,
.footer-policy ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-policy ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.chakra-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.chakra-icon {
    cursor: pointer;
    transition: var(--transition);
}

.chakra-icon:hover {
    transform: rotate(180deg);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* Thank You Page */
.thankyou-section {
    background-color: var(--background-color);
    padding: 8rem 0 4rem;
    text-align: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.thankyou-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thankyou-info {
    text-align: left;
    margin: 2rem 0;
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.lotus-decoration {
    margin: 2rem 0;
}

/* Policy Pages */
.policy-section {
    background-color: var(--background-color);
    padding: 8rem 0 4rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-date {
    color: var(--secondary-color);
    font-style: italic;
}

.policy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.policy-navigation {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.policy-navigation h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-navigation ul {
    list-style: none;
    margin: 0;
}

.policy-navigation ul li {
    margin-bottom: 0.8rem;
}

.policy-navigation ul li a {
    color: var(--text-color);
    transition: var(--transition);
}

.policy-navigation ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.policy-sections {
    flex: 3;
    min-width: 300px;
}

.policy-section-content {
    margin-bottom: 3rem;
}

.decorative-line {
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1rem 0 2rem;
}

.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.data-category {
    background-color: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.decorated-list {
    list-style: none;
    margin-left: 0;
}

.decorated-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.decorated-list li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background-color: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.right-item h3 {
    color: var(--secondary-color);
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
}

/* Cookies Policy Page Specific */
.cookies-policy {
    background-color: var(--background-color);
}

.cookies-sections .policy-section-content {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.cookies-line {
    background-color: var(--primary-color);
    margin: 1rem auto 2rem;
}

.cookies-illustration {
    text-align: center;
    margin: 2rem 0;
}

.cookies-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.cookie-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cookie-icon {
    margin: 1rem auto;
}

.cookies-purpose-list {
    list-style: none;
    margin-left: 0;
}

.cookies-purpose-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.purpose-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.browser-settings {
    margin: 2rem 0;
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.browser-item {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.browser-icon {
    margin: 0 auto 1rem;
    width: 40px;
    height: 40px;
}

.cookies-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.cookies-table th, .cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookies-table th {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookies-table tr:hover td {
    background-color: #f0f0f0;
}

/* Terms Page Specific */
.terms-section {
    background-color: #f9f9f9;
}

.terms-sections .policy-section-content {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.terms-line {
    background-color: var(--primary-color);
    margin: 1rem 0 2rem;
}

.terms-list {
    list-style: none;
    margin-left: 0;
}

.terms-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-list li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background-color: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin: 0 auto 1rem;
    width: 40px;
    height: 40px;
}

.payment-details {
    background-color: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.payment-methods li {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.cancellation-policy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cancellation-item {
    background-color: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-details {
    background-color: var(--light-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}

/* Favicon */
.favicon-svg {
    width: 32px;
    height: 32px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .about-content, .mandala-content, .contact-content {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .policy-navigation {
        position: static;
        max-width: none;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .wave-divider {
        height: 60px;
    }
    
    .wave-divider.footer-wave {
        height: 100px;
    }
    
    .policy-content {
        flex-direction: column;
    }
    
    .policy-navigation {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-heading {
        margin-bottom: 2rem;
    }
    
    .benefits-grid, .programs-comparison, .instructors-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content, .policy-section-content {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 375px) {
    .header-container {
        padding: 0.8rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo svg {
        width: 40px;
        height: 40px;
    }
    
    nav ul li {
        margin: 0.3rem;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-heading h2 {
        font-size: 1.4rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .footer-content {
        padding: 2rem 5%;
    }
}