@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');

:root {
    --color-primary: #d4a574;
    --color-secondary: #8b5e3c;
    --color-accent: #f5e6d3;
    --color-dark: #2c1810;
    --color-light: #faf7f4;
    --color-warm: #e8c9a8;
    --color-text: #3d2914;
    --color-muted: #7a6555;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

a {
    text-decoration: none;
    color: var(--color-secondary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary);
}

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: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-secondary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 244, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--color-primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 25px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    gap: 4px;
    transition: var(--transition);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.nav-mobile {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-light);
    padding: 30px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.nav-mobile.active {
    transform: translateX(0);
    height: 100vh;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-mobile a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: var(--color-accent);
    color: var(--color-secondary);
}

.hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero h1 {
    margin-bottom: 15px;
    font-size: 2.4rem;
}

.hero p {
    color: var(--color-muted);
    margin-bottom: 25px;
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
}

.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 35px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--color-muted);
    font-size: 14px;
}

.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 25px 20px;
    background: var(--color-light);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.3rem;
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--color-muted);
    font-size: 13px;
}

.about-preview {
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-accent) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    color: var(--color-muted);
    margin-bottom: 12px;
    font-size: 14px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.15);
}

.products {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--color-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.12);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-warm));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-secondary);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.product-info p {
    color: var(--color-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.testimonials {
    background: var(--color-dark);
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
    color: white;
}

.cta h2 {
    color: white;
    margin-bottom: 12px;
}

.cta p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 14px;
}

.cta .btn {
    background: white;
    color: var(--color-secondary);
}

.cta .btn:hover {
    background: var(--color-dark);
    color: white;
}

.footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 30px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-brand .logo-text {
    color: white;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact p {
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--color-primary);
    width: 16px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.page-header {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-light) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: var(--color-muted);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--color-muted);
}

.breadcrumb span {
    color: var(--color-secondary);
}

.content-section {
    padding: 40px 0;
}

.content-section h2 {
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-muted);
}

.content-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section ul li {
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 14px;
}

.workshop-details {
    background: white;
}

.workshop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.workshop-info h3 {
    margin-bottom: 10px;
}

.workshop-info p {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.workshop-list {
    list-style: none !important;
    margin-left: 0 !important;
}

.workshop-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.workshop-list li i {
    color: var(--color-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.team-card {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.5rem;
    color: white;
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-card p {
    color: var(--color-muted);
    font-size: 12px;
}

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-form-wrapper {
    background: var(--color-light);
    padding: 25px 20px;
    border-radius: 15px;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-warm);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.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;
    margin-bottom: 0;
    color: var(--color-muted);
}

.contact-info-cards {
    display: grid;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--color-accent);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(5px);
}

.contact-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-card p {
    color: var(--color-muted);
    font-size: 13px;
}

.map-section {
    padding: 40px 0;
    background: var(--color-light);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 100vh;
}

.error-content,
.thankyou-content {
    max-width: 450px;
}

.error-icon,
.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 12px;
}

.error-content p,
.thankyou-content p {
    color: var(--color-muted);
    margin-bottom: 25px;
    font-size: 14px;
}

.policy-content {
    padding: 40px 0;
}

.policy-content h2 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.policy-content p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
}

.policy-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-content ul li {
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 14px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 13px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--color-primary);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 12px;
}

.stats-section {
    background: var(--color-accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-section {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--color-light);
    border-radius: 12px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 13px;
    color: var(--color-muted);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.value-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 3px solid var(--color-primary);
}

.value-card i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.value-card p {
    font-size: 13px;
    color: var(--color-muted);
}

.faq-section {
    background: var(--color-light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--color-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-accent), var(--color-warm));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-secondary);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }

    .menu-toggle {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

    .nav-mobile {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section {
        padding: 70px 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-content {
        max-width: 650px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 80px 0 35px;
    }

    .section {
        padding: 35px 0;
    }

    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 18px 15px;
    }

    .product-image {
        height: 140px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.last-updated {
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 20px;
}
