@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #f472b6;
    --accent: #22d3ee;
    --dark: #1e1b4b;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #f472b6 100%);
    --shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    --shadow-lg: 0 10px 40px rgba(99, 102, 241, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    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;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.visible {
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    margin: 0 15px;
    padding: 12px 25px;
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--light);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 70px;
    left: 15px;
    right: 15px;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-mobile a {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: var(--light);
    color: var(--primary);
}

.hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
}

.hero-text h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    color: var(--secondary);
    font-size: 20px;
}

.hero-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--gray);
}

.workshops {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.workshop-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.workshop-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.workshop-content {
    padding: 20px;
}

.workshop-content h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
}

.workshop-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.workshop-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.workshop-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.workshop-duration {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonials {
    padding: 60px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 15px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 12px;
    color: var(--gray);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 12px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
}

.cta-section {
    padding: 60px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-content .btn:hover {
    background: var(--dark);
    color: var(--white);
}

.footer {
    background: var(--dark);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 250px;
}

.footer-links h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links a {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p span {
    color: var(--accent);
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.policy-links a:hover {
    color: var(--accent);
}

.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, transparent 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 14px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 10px;
}

.about-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-text p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.values-section {
    padding: 60px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: 15px;
    background: var(--light);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 28px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 6px;
}

.value-card p {
    font-size: 12px;
    color: var(--gray);
}

.team-section {
    padding: 60px 0;
}

.team-content {
    background: var(--gradient);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.team-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.team-content p {
    font-size: 14px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 20px;
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--gradient);
    border-radius: 25px;
    padding: 35px;
    color: var(--white);
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-info > p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item div h4 {
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 3px;
}

.contact-item div p {
    font-size: 12px;
    opacity: 0.85;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

.checkbox-group a {
    color: var(--primary);
}

.contact-form-wrapper .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.map-section {
    padding: 0 0 60px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.sip-hero {
    padding: 120px 0 50px;
    background: linear-gradient(180deg, rgba(244, 114, 182, 0.1) 0%, transparent 100%);
}

.sip-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sip-hero-text h1 {
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 15px;
}

.sip-hero-text h1 span {
    color: var(--secondary);
}

.sip-hero-text p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.sip-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.sip-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--dark);
    background: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.sip-feature i {
    color: var(--secondary);
}

.experience-section {
    padding: 60px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.experience-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.experience-number {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.experience-card h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.experience-card p {
    font-size: 13px;
    color: var(--gray);
}

.booking-section {
    padding: 60px 0;
    background: var(--gradient);
}

.booking-content {
    text-align: center;
    color: var(--white);
}

.booking-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.booking-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.booking-content .btn {
    background: var(--white);
    color: var(--primary);
}

.status-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
}

.status-content {
    text-align: center;
    max-width: 450px;
}

.status-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.status-icon i {
    font-size: 36px;
    color: var(--white);
}

.status-icon.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.status-content h1 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 12px;
}

.status-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
}

.policy-page {
    padding: 60px 0;
}

.policy-content {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.policy-content h2 {
    font-size: 22px;
    color: var(--dark);
    margin: 30px 0 15px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.policy-date {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-popup h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-popup h4 i {
    color: var(--primary);
}

.cookie-popup p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 15px;
}

.cookie-popup a {
    color: var(--primary);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 13px;
}

.btn-secondary {
    background: var(--light);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--gray);
    color: var(--white);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 25px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid,
    .workshops-grid,
    .products-grid,
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid,
    .contact-grid,
    .sip-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .header-cta .btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .features-grid,
    .workshops-grid,
    .testimonials-slider,
    .products-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .policy-content {
        padding: 25px;
    }
    
    .sip-hero-text h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header-inner {
        margin: 0 10px;
        padding: 10px 15px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 26px;
    }
    
    .hero-text p {
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .features,
    .workshops,
    .testimonials,
    .about-section,
    .values-section,
    .team-section,
    .contact-section,
    .products-section,
    .experience-section,
    .policy-page {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .feature-card,
    .workshop-content,
    .testimonial-card,
    .product-content {
        padding: 18px;
    }
    
    .cta-content h2,
    .booking-content h2 {
        font-size: 24px;
    }
    
    .team-content {
        padding: 25px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .page-hero h1 {
        font-size: 22px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}
