@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B7355;
    --primary-dark: #6B5344;
    --secondary: #D4C4B0;
    --accent: #E8DED1;
    --text: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F0E8;
    --shadow: 0 4px 20px rgba(139, 115, 85, 0.12);
    --shadow-hover: 0 8px 30px rgba(139, 115, 85, 0.2);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: var(--transition);
}

.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 {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    background: var(--accent);
    color: var(--primary-dark);
}

main {
    margin-top: 68px;
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.hero {
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, var(--secondary) 0%, transparent 70%);
    opacity: 0.4;
}

.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.8rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.hero-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    opacity: 0.3;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--bg-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.feature-card h3 {
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 13px;
    margin: 0;
}

.about-preview {
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workshops {
    background: var(--white);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.workshop-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.workshop-card:hover {
    box-shadow: var(--shadow);
}

.workshop-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.workshop-content h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.workshop-content p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 10px;
}

.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
}

.author-info span {
    display: block;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 12px;
    opacity: 0.8;
}

.cta-section {
    background: var(--bg-cream);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 180px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    margin-bottom: 8px;
}

.product-content p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.page-hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text-light);
}

.content-section {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    margin-bottom: 15px;
}

.content-main h3 {
    margin: 25px 0 12px;
}

.content-main p {
    color: var(--text-light);
}

.content-main ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-main li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.sidebar-card h4 {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--secondary);
    font-size: 13px;
}

.sidebar-card li:last-child {
    border: none;
}

.sidebar-card li i {
    margin-right: 8px;
    color: var(--primary);
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 35px;
    border-radius: var(--radius);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 18px;
    margin-top: 3px;
}

.contact-item span {
    font-size: 13px;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--radius);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    border: 1px solid var(--secondary);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.team-section {
    background: var(--bg-cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-role {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px 15px;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.value-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.policy-content {
    background: var(--white);
    padding: 50px 0;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-wrapper h2 {
    margin: 30px 0 15px;
    padding-top: 20px;
    border-top: 1px solid var(--secondary);
}

.policy-wrapper h2:first-of-type {
    border: none;
    padding-top: 0;
    margin-top: 0;
}

.policy-wrapper h3 {
    margin: 20px 0 10px;
}

.policy-wrapper p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.policy-wrapper ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-wrapper li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-cream);
    height: 100vh;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 15px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
}

.thank-you-content h1 {
    margin-bottom: 15px;
}

.thank-you-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

footer {
    background: var(--text);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.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(--white);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 13px;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 12px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.schedule-list {
    list-style: none;
    padding: 0;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--secondary);
    font-size: 13px;
}

.class-image-section {
    background: var(--bg-cream);
}

.class-image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.class-image-wrapper img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.class-benefits {
    background: var(--white);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.benefit-item i {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-item h4 {
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.pricing-section {
    background: var(--bg-cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    background: var(--primary);
    color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured h4 {
    color: var(--white);
}

.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card.featured .btn {
    background: var(--white);
    color: var(--primary);
}

.pricing-card h3 {
    margin-bottom: 10px;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features i {
    color: var(--primary);
}

.pricing-card.featured .pricing-features i {
    color: var(--white);
}

.corporate-intro {
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.corporate-benefits {
    background: var(--bg-cream);
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.corporate-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.corporate-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.corporate-card h4 {
    margin-bottom: 8px;
}

.corporate-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.process-section {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.process-step h4 {
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 992px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid,
    .testimonial-grid,
    .team-grid,
    .products-grid,
    .pricing-grid,
    .corporate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .content-grid,
    .contact-wrapper,
    .class-image-wrapper,
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 842px) {
    body { font-size: 13px; }
    
    section { padding: 40px 0; }
    
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    
    .nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 25px 25px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 5px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        width: 100%;
        padding: 12px 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .testimonial-grid,
    .team-grid,
    .products-grid,
    .pricing-grid,
    .corporate-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats,
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    
    section { padding: 30px 0; }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .about-stats,
    .stats-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .workshop-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    body { font-size: 12px; }
    
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.2rem; }
    
    .logo-text { font-size: 1.1rem; }
    
    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 20px 15px;
    }
}
