@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond: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: #5a7247;
    --primary-dark: #3d5030;
    --secondary: #d4a574;
    --accent: #f5e6d3;
    --text: #2c3e2d;
    --text-light: #6b7c6c;
    --white: #ffffff;
    --cream: #faf8f5;
    --shadow: rgba(90, 114, 71, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.4s ease, background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.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: var(--white);
    font-size: 16px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    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 {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    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 ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(90, 114, 71, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--secondary);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
}

.hero-badge span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.hero-badge small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.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: 15px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
}

.workshops {
    background: var(--cream);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.workshop-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.workshop-image {
    height: 180px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
}

.workshop-content {
    padding: 20px;
}

.workshop-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.workshop-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--accent);
}

.workshop-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}

.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-content h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.about-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-list {
    margin: 15px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.about-list i {
    color: var(--secondary);
}

.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials-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: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-card p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.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;
    font-weight: 600;
    font-size: 14px;
}

.author-info span {
    display: block;
    font-weight: 600;
    font-size: 13px;
}

.author-info small {
    font-size: 11px;
    opacity: 0.8;
}

.cta {
    background: var(--accent);
    text-align: center;
}

.cta h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.cta p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.footer-links ul li,
.footer-contact p {
    font-size: 12px;
    margin-bottom: 6px;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--secondary);
    width: 14px;
}

.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;
    opacity: 0.7;
}

.footer-bottom .copyright-year {
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    font-size: 11px;
    opacity: 0.7;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--secondary);
}

.page-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
    padding: 100px 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    margin-top: 15px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

.workshop-detail {
    background: var(--white);
}

.workshop-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.workshop-detail-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.workshop-detail-content h2 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.workshop-detail-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.workshop-info-box {
    background: var(--cream);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.workshop-info-box h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.info-item i {
    color: var(--secondary);
    width: 16px;
}

.workshop-price-box {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}

.workshop-price-box .price {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.workshop-price-box small {
    font-size: 12px;
    opacity: 0.8;
}

.curriculum {
    background: var(--cream);
}

.curriculum-list {
    max-width: 700px;
    margin: 0 auto;
}

.curriculum-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.curriculum-number {
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.curriculum-item h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.curriculum-item p {
    font-size: 13px;
    color: var(--text-light);
}

.about-page-section {
    background: var(--white);
}

.about-content-full {
    max-width: 800px;
    margin: 0 auto;
}

.about-content-full p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background: var(--cream);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.value-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.value-card p {
    font-size: 13px;
    color: var(--text-light);
}

.team-section {
    background: var(--cream);
}

.team-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.team-intro p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.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: 20px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.contact-item div span {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item div p {
    font-size: 13px;
    margin-top: 2px;
}

.contact-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.contact-hours h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-hours p {
    font-size: 12px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 35px;
    border-radius: 20px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--accent);
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    background: var(--cream);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.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 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
}

.thank-you-inner,
.error-inner {
    max-width: 500px;
}

.thank-you-icon,
.error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.thank-you-icon {
    background: var(--primary);
    color: var(--white);
}

.error-icon {
    background: var(--secondary);
    color: var(--white);
}

.thank-you-inner h1,
.error-inner h1 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.thank-you-inner p,
.error-inner p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.error-code {
    font-size: 80px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
}

.policy-page {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 22px;
    color: var(--primary-dark);
    margin: 25px 0 12px;
}

.policy-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.policy-meta {
    background: var(--cream);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.policy-meta p {
    font-size: 12px;
    margin: 0;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 30px var(--shadow);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.cookie-text p {
    font-size: 12px;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn.decline {
    background: var(--accent);
    color: var(--text);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.products-section {
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-icon-wrapper {
    height: 160px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-wrapper i {
    font-size: 50px;
    color: var(--primary);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.product-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--accent);
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}

@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 {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .features-grid,
    .workshops-grid,
    .testimonials-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .workshop-detail-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px var(--shadow);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    nav a {
        font-size: 15px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .features-grid,
    .workshops-grid,
    .testimonials-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    section {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-badge {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }

    .error-code {
        font-size: 60px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .logo-text {
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}
