@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --primary: #8B7355;
    --primary-light: #A89078;
    --primary-dark: #6B5344;
    --secondary: #D4C5B5;
    --accent: #C4A77D;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F0EB;
    --text-dark: #2C2520;
    --text-medium: #5C5550;
    --text-light: #8B8580;
    --white: #FFFFFF;
    --border: #E8E0D8;
    --shadow: rgba(44, 37, 32, 0.08);
    --shadow-md: rgba(44, 37, 32, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-dark);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--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-inner {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    position: absolute;
}

.nav-toggle span:first-child { transform: translateY(-5px); }
.nav-toggle span:last-child { transform: translateY(5px); }

.nav-toggle.active span:first-child {
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    padding: 0.3rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

main {
    flex: 1;
    margin-top: 56px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(180deg, var(--secondary) 0%, transparent 100%);
    opacity: 0.3;
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 480px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px var(--shadow-md);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    z-index: -1;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    margin-bottom: 0.6rem;
}

.section-header p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
}

.about-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px var(--shadow-md);
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.about-list {
    margin: 1.2rem 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
}

.about-list li i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary), var(--bg-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
}

.product-info {
    padding: 1.2rem;
}

.product-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.product-info p {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 0.8rem;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--border);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.process-step h4 {
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.6rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--bg-cream);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.footer-logo .logo-icon {
    background: var(--primary-light);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.footer-links ul li {
    margin-bottom: 0.3rem;
}

.footer-links ul li a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.3rem;
}

.footer-contact i {
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.footer-legal a:hover {
    color: var(--accent);
}

.page-header {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    padding: 2.5rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--text-medium);
}

.breadcrumb span {
    color: var(--text-light);
}

.content-section {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.content-main h2 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.content-main h3 {
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
}

.content-main p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.content-main ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.content-main ul li {
    list-style: disc;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.sidebar-card {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 1.2rem;
}

.sidebar-card h4 {
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.contact-page {
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    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: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.checkbox-group a {
    text-decoration: underline;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-info-card h3 i {
    color: var(--primary);
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 0.3rem;
}

.map-container {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.sample-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.sample-card:hover {
    transform: translateY(-3px);
}

.sample-color {
    width: 100%;
    height: 80px;
    border-radius: 4px;
    margin-bottom: 0.6rem;
}

.sample-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.sample-card p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.error-page,
.thankyou-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
}

.error-page main,
.thankyou-page main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.error-icon,
.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.error-icon {
    background: #fee;
    color: #c44;
}

.success-icon {
    background: #efe;
    color: #4a4;
}

.error-page h1,
.thankyou-page h1 {
    margin-bottom: 0.5rem;
}

.error-page p,
.thankyou-page p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.policy-content h3 {
    margin: 1.5rem 0 0.8rem;
    font-size: 1.15rem;
}

.policy-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.policy-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-content ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 20px var(--shadow-md);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 0;
    flex: 1;
}

.cookie-content a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.6rem;
}

.cookie-buttons .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.warranty-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.warranty-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warranty-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.warranty-card h4 {
    margin-bottom: 0.3rem;
}

.warranty-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 4px 20px var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border);
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .warranty-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-stats {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .samples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 320px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.6rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .samples-grid {
        grid-template-columns: 1fr;
    }
}
