@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5a3d;
    --secondary-green: #4a7c59;
    --accent-sage: #8fbc8f;
    --light-cream: #f8f6f0;
    --warm-beige: #e8e0d5;
    --deep-brown: #3d2914;
    --text-dark: #2c2c2c;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(45, 90, 61, 0.1);
    --shadow-medium: 0 8px 30px rgba(45, 90, 61, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-green);
}

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-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--secondary-green); }

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: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-visible {
    transform: translateY(0);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
    height: 60px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo:hover {
    color: var(--accent-sage);
}

.logo span {
    color: var(--accent-sage);
}

/* Desktop navigation */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-desktop .nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-desktop .nav-menu a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 14px;
    border-radius: 20px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-desktop .nav-menu a:hover,
.nav-desktop .nav-menu a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
}

.nav-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    position: absolute;
    left: 0;
}

.nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle-icon span:nth-child(3) { bottom: 0; }

.nav-toggle.active .nav-toggle-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-icon span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile overlay nav */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 90, 61, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    height: 100vh;
}

.nav-overlay .nav-menu {
    list-style: none;
    text-align: center;
}

.nav-overlay .nav-menu li {
    margin: 15px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.nav-overlay.active .nav-menu li {
    transform: translateY(0);
    opacity: 1;
}

.nav-overlay.active .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.active .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.active .nav-menu li:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.active .nav-menu li:nth-child(5) { transition-delay: 0.3s; }

.nav-overlay .nav-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-overlay .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-sage);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-overlay .nav-menu a:hover::after {
    width: 100%;
}

.nav-overlay .nav-menu a:hover {
    color: var(--accent-sage);
}

main {
    margin-top: 60px;
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--warm-beige) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--accent-sage);
    opacity: 0.1;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    max-width: 600px;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-green);
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 25px 20px;
    background: var(--light-cream);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 20px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-preview {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--light-cream) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 14px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--light-cream);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    height: 180px;
    background: var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image i {
    font-size: 50px;
    color: var(--accent-sage);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
}

.tips {
    background: var(--primary-green);
    color: var(--white);
}

.tips .section-header h2 {
    color: var(--white);
}

.tips .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.tip-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-sage);
    margin-bottom: 10px;
}

.tip-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.tip-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--light-cream) 100%);
    text-align: center;
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 60px 0 40px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.value-item i {
    color: var(--primary-green);
    font-size: 16px;
    margin-top: 3px;
}

.value-item span {
    font-size: 13px;
}

.team-section {
    background: var(--light-cream);
}

.team-intro {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

.team-intro p {
    color: var(--text-muted);
    font-size: 14px;
}

.mission-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
}

.mission-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.mission-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 14px;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.contact-item-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--light-cream);
    padding: 30px;
    border-radius: 15px;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    border: 2px solid var(--warm-beige);
    border-radius: 8px;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-green);
}

.checkbox-group label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.checkbox-group a {
    text-decoration: underline;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    background: var(--warm-beige);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.bonsai-intro,
.hydro-intro {
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 15px;
}

.intro-text p {
    color: var(--text-muted);
    font-size: 14px;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.benefits {
    background: var(--light-cream);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--warm-beige);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: var(--light-cream);
    border: none;
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--warm-beige);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 0;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--warm-beige) 100%);
}

.error-content,
.thankyou-content {
    max-width: 450px;
    padding: 40px 20px;
}

.error-icon,
.thankyou-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.error-icon i,
.thankyou-icon i {
    font-size: 36px;
    color: var(--white);
}

.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 12px;
}

.error-content p,
.thankyou-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.policy-section {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-muted);
    font-size: 13px;
}

.policy-content ul {
    margin: 10px 0 15px 20px;
}

.policy-content ul li {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 5px;
}

.policy-date {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

footer {
    background: var(--deep-brown);
    color: var(--white);
    padding: 25px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--accent-sage);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.privacy-links {
    display: flex;
    gap: 15px;
}

.privacy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.privacy-links a:hover {
    color: var(--white);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 12px;
}

@media (max-width: 838px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    
    .hero { min-height: 60vh; }
    .hero h1 { font-size: 2rem; }
    
    .about-grid,
    .about-content,
    .contact-grid,
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats { justify-content: center; }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile header */
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    body { font-size: 13px; }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    
    .container { padding: 0 12px; }
    
    section { padding: 35px 0; }
    
    .hero h1 { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    
    .nav-menu a { font-size: 1.4rem; }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .privacy-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .container { padding: 0 10px; }
    
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.15rem; }
    
    .btn { 
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .logo { font-size: 1.2rem; }
    
    .feature-card { padding: 20px 15px; }
    
    .contact-form-wrapper { padding: 20px 15px; }
}
