@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: #8B4513;
    --primary-light: #D2691E;
    --secondary: #2C3E50;
    --accent: #E67E22;
    --cream: #FDF5E6;
    --warm-white: #FFFAF0;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-white);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    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; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--accent); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    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: 0.5px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    position: fixed;
    background: rgba(255,250,240,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo span { color: var(--primary); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    margin: 3px 0;
    transition: var(--transition);
    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(7px, -8px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    padding: 5px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, rgba(139,69,19,0.05) 0%, transparent 50%);
    transform: rotate(-15deg);
}

.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.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero-text h1 span { color: var(--primary); }

.hero-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    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(--primary);
    color: #fff;
    padding: 15px 20px;
    border-radius: var(--radius);
    text-align: center;
}

.hero-badge strong {
    display: block;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.hero-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 25px 20px;
    background: var(--cream);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.about-preview {
    background: var(--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-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-light);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.stat-item span {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}

.workshops-preview {
    background: #fff;
}

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.workshop-card {
    background: var(--warm-white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.workshop-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.workshop-card-content {
    padding: 20px;
}

.workshop-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.workshop-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.workshop-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.testimonials {
    background: var(--secondary);
    color: #fff;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: #fff;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: var(--radius);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author i {
    font-size: 2rem;
    color: var(--accent);
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 12px;
    opacity: 0.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-section .btn {
    background: #fff;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

footer {
    background: var(--secondary);
    color: #fff;
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--accent);
    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: 12px;
    opacity: 0.7;
    margin: 0;
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.policy-links a:hover {
    color: #fff;
}

.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--primary);
}

.workshops-page {
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--warm-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 180px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 3rem;
    color: var(--primary);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;
}

.product-info p {
    font-size: 13px;
    color: var(--text-light);
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

.about-page-section {
    background: #fff;
}

.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.team-section {
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow);
}

.team-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
}

.values-section {
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 20px 15px;
}

.value-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.contact-section {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 30px;
    border-radius: var(--radius);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: #fff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,69,19,0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.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;
    margin: 0;
    color: var(--text-light);
}

.contact-info-wrapper h3 {
    margin-bottom: 20px;
}

.contact-info-list {
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.contact-info-item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 13px;
    color: var(--text-light);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--cream);
}

.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;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.thankyou-content i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thankyou-content h1 {
    margin-bottom: 15px;
}

.thankyou-content p {
    color: var(--text-light);
    margin: 0 auto;
    margin-bottom: 25px;
    max-width: 450px;
}

.policy-page {
    background: #fff;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.policy-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border: none;
}

.policy-content p,
.policy-content li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 8px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: #fff;
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.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;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 13px;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 12px;
}

.schedule-section {
    background: var(--cream);
}

.schedule-list {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: var(--radius);
}

.schedule-item strong {
    font-size: 14px;
}

.schedule-item span {
    color: var(--primary);
    font-weight: 500;
}

.benefits-section {
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.benefit-item h4 {
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.faq-section {
    background: var(--cream);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 15px;
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.intro-section {
    background: var(--cream);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-badge {
        bottom: -10px;
        left: 10px;
    }
    
    .features-grid,
    .workshop-cards,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .about-full-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--warm-white);
        padding: 70px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .features-grid,
    .workshop-cards,
    .products-grid,
    .team-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 15px;
        display: inline-block;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
    
    .policy-links {
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.4rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
}