@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e85d04;
    --primary-dark: #d45103;
    --secondary: #370617;
    --accent: #faa307;
    --light: #fff3e0;
    --dark: #1a1a2e;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(232,93,4,0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.header.visible {
    transform: translateY(0);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    margin: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary);
}

.scroll-indicator {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,93,4,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.hero-badge small {
    font-size: 0.75rem;
    color: var(--text-light);
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.features {
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.3rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.workshop-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.workshop-image {
    width: 200px;
    flex-shrink: 0;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.workshop-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.workshop-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    flex-grow: 1;
}

.workshop-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.workshop-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.products {
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--light) 0%, #fde8d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.product-content {
    padding: 18px;
}

.product-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.product-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.testimonials {
    background: var(--secondary);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-info h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.cta p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.cta .btn {
    background: var(--white);
    color: var(--primary);
}

.cta .btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    max-width: 250px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.copyright span {
    color: var(--primary);
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.policy-links a:hover {
    color: var(--primary);
}

.cookie-popup {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.cookie-popup p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    font-size: 1.2rem;
}

.value-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 0.8rem;
    color: var(--primary);
}

.team-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 10px;
}

.contact-section {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item div h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item div p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary);
}

.form-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: var(--radius);
}

.class-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.class-main h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.class-main p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.class-main ul {
    margin-bottom: 20px;
}

.class-main ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
}

.class-main ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.class-sidebar {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    height: fit-content;
}

.class-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 0.85rem;
}

.sidebar-item:last-of-type {
    border-bottom: none;
}

.sidebar-item i {
    color: var(--primary);
    width: 20px;
}

.sidebar-btn {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.schedule-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.schedule-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.schedule-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.event-date {
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date span {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.event-date small {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
    flex-grow: 1;
}

.event-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.event-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.event-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.package-header {
    background: var(--secondary);
    color: var(--white);
    padding: 20px;
}

.package-header.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.package-header h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.package-price small {
    font-size: 0.8rem;
    font-weight: 400;
}

.package-content {
    padding: 25px;
}

.package-content ul {
    margin-bottom: 20px;
}

.package-content li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    height: 100vh;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    height: 100vh;
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2.5rem;
}

.thankyou-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.policy-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content ul li {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 25px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .features-grid,
    .testimonials-grid,
    .products-grid,
    .team-grid,
    .schedule-grid,
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro,
    .contact-wrapper,
    .class-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .testimonials-grid,
    .products-grid,
    .team-grid,
    .schedule-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-card {
        flex-direction: column;
    }
    
    .workshop-image {
        width: 100%;
        height: 180px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        gap: 10px;
        min-width: auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-desc {
        max-width: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .header-inner {
        margin: 8px;
        padding: 10px 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .cookie-btns {
        flex-direction: column;
    }
    
    .cookie-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 12px;
    }
    
    .header-inner {
        margin: 5px;
        padding: 8px 12px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}
