@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #B8860B;
    --primary-light: #DAA520;
    --primary-dark: #8B6914;
    --secondary: #2C3E50;
    --accent: #E8D5B7;
    --cream: #FDF8F3;
    --warm-white: #FFFAF5;
    --text-dark: #2D2D2D;
    --text-muted: #6B6B6B;
    --border: #E5E0DB;
    --shadow: rgba(184, 134, 11, 0.12);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    padding: 8px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.logo-text span {
    color: var(--primary-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-light);
}

main {
    padding-top: 52px;
}

.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow);
}

.hero-badge i {
    color: var(--primary);
    margin-right: 6px;
}

.hero-badge span {
    font-weight: 600;
    font-size: 13px;
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.section-label {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.workshops-section {
    background: var(--cream);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.workshop-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.workshop-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.workshop-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.workshop-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.products-section {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
    height: 160px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.6;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.product-info p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-btn {
    padding: 6px 14px;
    font-size: 11px;
}

.benefits-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    color: white;
}

.benefits-section .section-header h2 {
    color: white;
}

.benefits-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.benefits-section .section-label {
    background: var(--primary);
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
}

.benefit-item h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.testimonials-section {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.testimonial-stars {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 12px;
}

.testimonial-text {
    font-size: 13px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.author-info h5 {
    font-size: 13px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 10px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 14px;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    padding: 25px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 12px;
    max-width: 250px;
    margin: 0;
    color: rgba(255,255,255,0.6);
}

.footer-links h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--primary-light);
    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;
}

.footer-bottom p {
    font-size: 11px;
    margin: 0;
    color: rgba(255,255,255,0.5);
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.policy-links a:hover {
    color: var(--primary-light);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 12px;
    margin: 0;
    color: var(--text-muted);
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 18px;
    font-size: 11px;
}

.page-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    padding: 40px 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.team-section {
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary);
}

.team-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.contact-section {
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form-box {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
}

.contact-form-box h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    font-weight: 400;
    margin: 0;
    color: var(--text-muted);
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.contact-info-box h3 {
    color: white;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h5 {
    color: white;
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-details p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.map-wrapper {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    height: 150px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.thank-you-page,
.error-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.thank-you-content,
.error-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 15px;
}

.thank-you-box,
.error-box {
    max-width: 450px;
}

.thank-icon,
.error-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.error-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.thank-you-box h1,
.error-box h1 {
    margin-bottom: 15px;
}

.thank-you-box p,
.error-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 14px;
}

.policy-page {
    background: white;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 15px;
}

.policy-content h1 {
    margin-bottom: 10px;
}

.policy-content .last-updated {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.policy-content h2 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.policy-content h3 {
    font-size: 1rem;
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    list-style: disc;
}

.workshop-detail {
    background: white;
}

.workshop-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.workshop-detail-text h2 {
    margin-bottom: 15px;
}

.workshop-detail-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.workshop-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    background: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
}

.workshop-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.schedule-section {
    background: var(--cream);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.schedule-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border);
}

.schedule-day {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.schedule-time {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.schedule-info {
    font-size: 12px;
    color: var(--text-muted);
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.idea-card {
    background: var(--cream);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.idea-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.idea-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.idea-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.idea-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.tips-section {
    background: var(--cream);
}

.tips-list {
    max-width: 700px;
    margin: 0 auto;
}

.tip-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.tip-number {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.tip-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--secondary);
        padding: 70px 25px 25px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    }

    .main-nav.open {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
        display: block;
        padding: 8px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .workshops-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .schedule-grid,
    .ideas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .workshop-detail-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image,
    .workshop-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    section {
        padding: 35px 0;
    }

    .hero {
        padding: 35px 0;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .workshops-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .schedule-grid,
    .ideas-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }

    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 15px;
        display: inline-block;
    }

    .product-card,
    .workshop-card,
    .testimonial-card,
    .team-card,
    .idea-card,
    .schedule-card,
    .benefit-item {
        padding: 20px;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 20px;
    }

    .footer-content {
        gap: 20px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 10px;
    }

    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.1rem; }
    h3 { font-size: 1rem; }

    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .btn {
        padding: 7px 15px;
        font-size: 11px;
    }

    section {
        padding: 25px 0;
    }
}
