* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--emerald: #047857;
--coral: #f97316;
--ivory: #fffbf5;
--slate: #1e293b;
}

body {
font-family: 'Outfit', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--slate);
background: var(--ivory);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.2;
color: var(--emerald);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--slate);
color: var(--ivory);
padding: 15px 20px;
z-index: 9999;
display: none;
}

.privacy-popup.show { display: block; }

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 200px;
}

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--ivory);
font-size: 14px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--coral);
color: var(--ivory);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}

.header-overlay {
background: rgba(255, 251, 245, 0.95);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(4, 120, 87, 0.1);
}

.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo a {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 600;
color: var(--emerald);
}

.main-nav ul {
display: flex;
list-style: none;
gap: 30px;
}

.main-nav a {
color: var(--slate);
font-size: 15px;
font-weight: 400;
}

.main-nav a:hover {
color: var(--emerald);
}

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: var(--emerald);
cursor: pointer;
}

.hero-mega {
min-height: 95vh;
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
padding: 80px 20px;
background: linear-gradient(135deg, var(--ivory) 0%, #e8f5e9 50%, var(--ivory) 100%);
position: relative;
overflow: hidden;
}

.hero-mega::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(4, 120, 87, 0.08) 0%, transparent 70%);
border-radius: 50%;
}

.hero-content {
max-width: 600px;
z-index: 2;
padding-left: 40px;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--emerald);
color: var(--ivory);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
}

.hero-content h1 {
font-size: 3.8rem;
line-height: 1.05;
margin-bottom: 25px;
background: linear-gradient(135deg, var(--emerald) 0%, var(--coral) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-content p {
font-size: 1.15rem;
color: var(--slate);
margin-bottom: 35px;
line-height: 1.7;
}

.hero-actions {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-primary {
background: var(--emerald);
color: var(--ivory);
padding: 16px 40px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
border: 2px solid var(--emerald);
}

.btn-primary:hover {
background: transparent;
color: var(--emerald);
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: var(--emerald);
padding: 16px 40px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
border: 2px solid var(--emerald);
transition: all 0.3s ease;
}

.btn-secondary:hover {
background: var(--emerald);
color: var(--ivory);
}

.hero-visual {
position: relative;
z-index: 2;
}

.hero-image-stack {
position: relative;
width: 100%;
max-width: 500px;
margin: 0 auto;
}

.hero-main-img {
border-radius: 30px;
overflow: hidden;
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
transform: rotate(-2deg);
}

.hero-main-img img {
width: 100%;
height: auto;
display: block;
}

.hero-floating-card {
position: absolute;
bottom: -20px;
left: -30px;
background: white;
padding: 20px 25px;
border-radius: 20px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
display: flex;
align-items: center;
gap: 15px;
}

.floating-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--emerald), var(--coral));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
}

.floating-text h4 {
font-size: 14px;
margin-bottom: 4px;
color: var(--emerald);
}

.floating-text p {
font-size: 12px;
color: var(--slate);
opacity: 0.7;
}

.features-grid {
padding: 100px 20px;
background: white;
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 60px;
}

.section-header h2 {
margin-bottom: 15px;
font-size: 2.5rem;
}

.section-header p {
font-size: 1.1rem;
color: var(--slate);
opacity: 0.8;
}

.grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}

.feature-card {
padding: 35px;
background: var(--ivory);
border-radius: 20px;
transition: all 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--emerald), var(--coral));
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 28px;
margin-bottom: 20px;
}

.feature-card h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

.feature-card p {
font-size: 14px;
line-height: 1.7;
color: var(--slate);
opacity: 0.85;
}

.showcase-section {
padding: 100px 20px;
background: var(--ivory);
}

.showcase-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
margin-bottom: 80px;
}

.showcase-item:nth-child(even) {
direction: rtl;
}

.showcase-item:nth-child(even) > * {
direction: ltr;
}

.showcase-image {
border-radius: 25px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.showcase-image img {
width: 100%;
height: auto;
}

.showcase-content h3 {
font-size: 2rem;
margin-bottom: 15px;
}

.showcase-subtitle {
font-style: italic;
color: var(--coral);
font-size: 15px;
margin-bottom: 20px;
}

.showcase-content p {
font-size: 15px;
line-height: 1.8;
color: var(--slate);
margin-bottom: 20px;
}

.showcase-list {
list-style: none;
margin: 25px 0;
}

.showcase-list li {
padding: 10px 0;
padding-left: 30px;
position: relative;
font-size: 14px;
}

.showcase-list li:before {
content: '✓';
position: absolute;
left: 0;
color: var(--emerald);
font-weight: 700;
font-size: 18px;
}

.showcase-price {
font-size: 2.5rem;
font-weight: 700;
color: var(--emerald);
margin: 20px 0;
}

.testimonials-section {
padding: 100px 20px;
background: white;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial-card {
background: var(--ivory);
padding: 35px;
border-radius: 20px;
display: flex;
flex-direction: column;
gap: 20px;
}

.testimonial-rating {
color: var(--coral);
font-size: 20px;
}

.testimonial-text {
font-size: 15px;
line-height: 1.7;
color: var(--slate);
font-style: italic;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 5px;
margin-top: auto;
padding-top: 20px;
border-top: 2px solid white;
}

.testimonial-author strong {
color: var(--emerald);
font-size: 16px;
}

.testimonial-author span {
font-size: 13px;
color: var(--slate);
opacity: 0.7;
}

.stats-section {
padding: 80px 20px;
background: var(--emerald);
color: var(--ivory);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
text-align: center;
}

.stat-item {
display: flex;
flex-direction: column;
gap: 10px;
}

.stat-number {
font-size: 3.5rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
color: var(--coral);
}

.stat-label {
font-size: 15px;
opacity: 0.9;
}

.cta-section {
padding: 100px 20px;
background: linear-gradient(135deg, var(--ivory) 0%, #fef3e8 100%);
}

.cta-box {
max-width: 900px;
margin: 0 auto;
text-align: center;
background: white;
padding: 60px 40px;
border-radius: 30px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta-box p {
font-size: 1.1rem;
color: var(--slate);
margin-bottom: 35px;
opacity: 0.85;
}

.page-hero {
background: var(--emerald);
color: var(--ivory);
padding: 80px 20px;
text-align: center;
}

.page-hero h1 {
color: var(--ivory);
margin-bottom: 15px;
font-size: 3rem;
}

.page-hero p {
font-size: 1.1rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

.page-header {
background: linear-gradient(135deg, var(--emerald) 0%, var(--coral) 100%);
color: var(--ivory);
padding: 80px 20px;
text-align: center;
}

.page-header h1 {
color: var(--ivory);
margin-bottom: 15px;
font-size: 3rem;
}

.page-header p {
font-size: 1.1rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

.contact-section {
padding: 80px 20px;
background: var(--ivory);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 60px;
}

.contact-form-area h2 {
margin-bottom: 30px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-group label {
font-weight: 600;
color: var(--emerald);
font-size: 14px;
}

.form-group input,
.form-group textarea {
padding: 12px 16px;
border: 2px solid #e5e7eb;
border-radius: 10px;
font-family: 'Outfit', sans-serif;
font-size: 15px;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--emerald);
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
gap: 10px;
font-size: 14px;
cursor: pointer;
}

.checkbox-label input {
margin-top: 3px;
}

.submit-button {
background: var(--emerald);
color: var(--ivory);
padding: 14px 35px;
border-radius: 50px;
font-weight: 600;
border: none;
cursor: pointer;
font-size: 16px;
transition: all 0.3s ease;
}

.submit-button:hover {
background: var(--coral);
transform: translateY(-2px);
}

.contact-info-area {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-card {
background: white;
padding: 30px;
border-radius: 20px;
display: flex;
flex-direction: column;
gap: 15px;
}

.info-card i {
font-size: 32px;
color: var(--coral);
}

.info-card h3 {
font-size: 1.2rem;
margin-bottom: 5px;
}

.info-card p {
font-size: 14px;
line-height: 1.6;
color: var(--slate);
}

.map-section {
padding: 80px 20px;
background: white;
}

.map-section h2 {
text-align: center;
margin-bottom: 40px;
}

.map-container {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.care-basics {
padding: 80px 20px;
background: var(--ivory);
}

.care-basics h2 {
text-align: center;
margin-bottom: 50px;
font-size: 2.5rem;
}

.basics-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.basic-card {
background: white;
padding: 35px;
border-radius: 20px;
display: flex;
flex-direction: column;
gap: 15px;
}

.basic-card i {
font-size: 40px;
color: var(--coral);
}

.basic-card h3 {
font-size: 1.3rem;
margin-top: 10px;
}

.basic-card p {
font-size: 14px;
line-height: 1.7;
color: var(--slate);
}

.plant-guides {
padding: 80px 20px;
background: white;
}

.plant-guides h2 {
text-align: center;
margin-bottom: 50px;
font-size: 2.5rem;
}

.guide-list {
display: flex;
flex-direction: column;
gap: 25px;
max-width: 900px;
margin: 0 auto;
}

.guide-item {
background: var(--ivory);
padding: 30px;
border-radius: 20px;
}

.guide-item h3 {
font-size: 1.3rem;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
}

.guide-item h3 i {
color: var(--emerald);
}

.guide-item p {
font-size: 14px;
line-height: 1.8;
color: var(--slate);
margin-bottom: 8px;
}

.care-tips {
padding: 80px 20px;
background: var(--ivory);
}

.care-tips h2 {
text-align: center;
margin-bottom: 50px;
font-size: 2.5rem;
}

.tips-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.tip-card {
background: white;
padding: 30px;
border-radius: 20px;
}

.tip-card h3 {
font-size: 1.2rem;
margin-bottom: 12px;
color: var(--coral);
}

.tip-card p {
font-size: 14px;
line-height: 1.7;
color: var(--slate);
}

.care-cta {
padding: 80px 20px;
background: white;
text-align: center;
}

.care-cta h2 {
margin-bottom: 15px;
font-size: 2.2rem;
}

.care-cta p {
font-size: 1.05rem;
color: var(--slate);
margin-bottom: 30px;
}

.cta-button {
background: var(--emerald);
color: var(--ivory);
padding: 16px 40px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
display: inline-block;
transition: all 0.3s ease;
}

.cta-button:hover {
background: var(--coral);
transform: translateY(-2px);
}

.products-showcase {
padding: 80px 20px;
background: var(--ivory);
}

.product-full {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-bottom: 100px;
align-items: center;
}

.product-visual {
position: relative;
border-radius: 25px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-visual img {
width: 100%;
height: auto;
}

.product-badge {
position: absolute;
top: 20px;
right: 20px;
background: var(--coral);
color: var(--ivory);
padding: 10px 20px;
border-radius: 25px;
font-size: 13px;
font-weight: 600;
}

.product-content {
display: flex;
flex-direction: column;
gap: 20px;
}

.product-subtitle {
font-style: italic;
color: var(--coral);
font-size: 15px;
margin-top: -10px;
}

.product-story {
font-size: 15px;
line-height: 1.7;
color: var(--slate);
}

.product-specs {
display: flex;
flex-direction: column;
gap: 20px;
background: white;
padding: 25px;
border-radius: 15px;
}

.spec-item strong {
display: block;
color: var(--emerald);
margin-bottom: 6px;
font-size: 15px;
}

.spec-item p {
font-size: 14px;
line-height: 1.6;
color: var(--slate);
margin: 0;
}

.product-purchase {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
border-top: 2px solid var(--ivory);
}

.product-price {
font-size: 2.5rem;
font-weight: 700;
color: var(--emerald);
}

.purchase-btn {
background: var(--emerald);
color: var(--ivory);
padding: 14px 35px;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
}

.purchase-btn:hover {
background: var(--coral);
}

.shop-promise {
padding: 80px 20px;
background: white;
}

.shop-promise h2 {
text-align: center;
margin-bottom: 50px;
font-size: 2.5rem;
}

.promise-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.promise-item {
background: var(--ivory);
padding: 35px;
border-radius: 20px;
}

.promise-item h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

.promise-item p {
font-size: 14px;
line-height: 1.7;
color: var(--slate);
}

.site-footer {
background: var(--slate);
color: var(--ivory);
padding: 30px 20px;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
gap: 25px;
margin-bottom: 20px;
flex-wrap: wrap;
}

.footer-links a {
color: var(--ivory);
font-size: 14px;
opacity: 0.8;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
}

.copyright {
font-size: 13px;
opacity: 0.7;
}

.policy-section {
padding: 80px 20px;
background: var(--ivory);
}

.policy-date {
font-size: 14px;
color: var(--slate);
opacity: 0.7;
margin-bottom: 40px;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 50px;
border-radius: 20px;
}

.policy-content h2 {
margin-top: 40px;
margin-bottom: 20px;
font-size: 1.6rem;
}

.policy-content h2:first-of-type {
margin-top: 0;
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 15px;
font-size: 1.2rem;
}

.policy-content p {
margin-bottom: 15px;
line-height: 1.8;
color: var(--slate);
}

.policy-content ul,
.policy-content ol {
margin: 15px 0 15px 30px;
line-height: 1.8;
}

.policy-content li {
margin-bottom: 10px;
color: var(--slate);
}

@media (max-width: 768px) {
.policy-content {
padding: 30px 20px;
}

.policy-content h2 {
font-size: 1.4rem;
}
}

@media (max-width: 480px) {
.policy-section {
padding: 60px 20px;
}

.policy-content {
padding: 25px 15px;
}

.policy-content h2 {
font-size: 1.3rem;
}
}

@media (min-width: 320px) and (max-width: 374px) {
.policy-content {
padding: 20px 12px;
}
}

@media (max-width: 968px) {
.hero-mega {
grid-template-columns: 1fr;
min-height: auto;
padding: 60px 20px;
}

.hero-content {
padding-left: 0;
}

.hero-content h1 {
font-size: 2.8rem;
}

.grid-3 {
grid-template-columns: 1fr;
}

.showcase-item {
grid-template-columns: 1fr;
}

.showcase-item:nth-child(even) {
direction: ltr;
}

.testimonials-grid {
grid-template-columns: 1fr;
}

.stats-grid {
grid-template-columns: repeat(2, 1fr);
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.basics-grid,
.tips-grid,
.promise-grid {
grid-template-columns: 1fr;
}

.product-full {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }

.main-nav {
position: fixed;
top: 0;
left: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: var(--ivory);
padding: 80px 30px 30px;
transition: left 0.3s ease;
box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
z-index: 999;
}

.main-nav.active {
left: 0;
}

.main-nav ul {
flex-direction: column;
gap: 20px;
}

.menu-toggle {
display: block;
}

.hero-content h1 {
font-size: 2.2rem;
}

.hero-actions {
flex-direction: column;
}

.btn-primary,
.btn-secondary {
width: 100%;
text-align: center;
}

.stats-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.page-hero h1,
.page-header h1 {
font-size: 2.2rem;
}
}

@media (max-width: 480px) {
body { font-size: 14px; }
h1 { font-size: 1.7rem; }
h2 { font-size: 1.4rem; }

.hero-content h1 {
font-size: 1.9rem;
}

.section-header h2 {
font-size: 1.8rem;
}

.hero-floating-card {
left: 10px;
bottom: 10px;
padding: 15px;
}

.floating-icon {
width: 40px;
height: 40px;
font-size: 20px;
}

.stat-number {
font-size: 2.5rem;
}

.cta-box {
padding: 40px 25px;
}

.cta-box h2 {
font-size: 1.8rem;
}

.product-purchase {
flex-direction: column;
gap: 15px;
align-items: stretch;
}

.purchase-btn {
text-align: center;
}
}

@media (min-width: 320px) and (max-width: 374px) {
.container {
padding: 0 15px;
}

.header-container {
padding: 12px 15px;
}

.logo a {
font-size: 1.1rem;
}

h1 { font-size: 1.5rem; }

.hero-content h1 {
font-size: 1.7rem;
}

.btn-primary,
.btn-secondary,
.cta-button {
padding: 12px 25px;
font-size: 14px;
width: 100%;
text-align: center;
}

.feature-card,
.basic-card,
.tip-card,
.promise-item {
padding: 25px;
}

.hero-floating-card {
position: static;
margin-top: 20px;
}
}

.thankyou-section {
min-height: calc(100vh - 150px);
display: flex;
align-items: center;
justify-content: center;
padding: 80px 20px;
background: linear-gradient(135deg, var(--ivory) 0%, #e8f5e9 100%);
}

.thankyou-content {
max-width: 700px;
text-align: center;
background: white;
padding: 60px 40px;
border-radius: 30px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.success-icon {
width: 100px;
height: 100px;
margin: 0 auto 30px;
background: linear-gradient(135deg, var(--emerald), var(--coral));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.success-icon i {
font-size: 50px;
color: var(--ivory);
}

.thankyou-content h1 {
color: var(--emerald);
margin-bottom: 20px;
font-size: 2.2rem;
}

.thankyou-content p {
font-size: 1.05rem;
line-height: 1.7;
color: var(--slate);
margin-bottom: 35px;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.secondary-button {
background: transparent;
color: var(--emerald);
padding: 14px 35px;
border-radius: 50px;
font-weight: 600;
border: 2px solid var(--emerald);
transition: all 0.3s ease;
display: inline-block;
}

.secondary-button:hover {
background: var(--emerald);
color: var(--ivory);
}

@media (max-width: 768px) {
.thankyou-section {
min-height: calc(100vh - 120px);
padding: 60px 20px;
}

.thankyou-content {
padding: 40px 30px;
}

.thankyou-content h1 {
font-size: 1.8rem;
}

.thankyou-actions {
flex-direction: column;
}

.cta-button,
.secondary-button {
width: 100%;
}
}

@media (max-width: 480px) {
.thankyou-content {
padding: 35px 25px;
}

.success-icon {
width: 80px;
height: 80px;
}

.success-icon i {
font-size: 40px;
}

.thankyou-content h1 {
font-size: 1.6rem;
}
}

.seasonal-care {
padding: 80px 20px;
background: white;
}

.seasonal-care h2 {
text-align: center;
margin-bottom: 50px;
font-size: 2.5rem;
}

.seasonal-content {
max-width: 900px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.season-block {
background: var(--ivory);
padding: 35px;
border-radius: 20px;
}

.season-block h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--coral);
}

.season-block p {
font-size: 14px;
line-height: 1.7;
color: var(--slate);
}

@media (max-width: 768px) {
.seasonal-content {
grid-template-columns: 1fr;
}
}

.guide-item ul {
list-style: none;
padding: 0;
margin: 15px 0 0 0;
}

.guide-item ul li {
padding: 8px 0;
font-size: 14px;
line-height: 1.6;
}

.error-section {
min-height: calc(100vh - 150px);
display: flex;
align-items: center;
justify-content: center;
padding: 80px 20px;
background: linear-gradient(135deg, var(--ivory) 0%, #fef3e8 100%);
}

.error-content {
max-width: 700px;
text-align: center;
background: white;
padding: 60px 40px;
border-radius: 30px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.error-icon {
width: 100px;
height: 100px;
margin: 0 auto 30px;
background: linear-gradient(135deg, var(--emerald), var(--coral));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.error-icon i {
font-size: 50px;
color: var(--ivory);
}

.error-content h1 {
font-size: 5rem;
color: var(--coral);
margin-bottom: 15px;
}

.error-content h2 {
color: var(--emerald);
margin-bottom: 20px;
font-size: 2rem;
}

.error-content p {
font-size: 1.05rem;
line-height: 1.7;
color: var(--slate);
margin-bottom: 35px;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

@media (max-width: 768px) {
.error-section {
min-height: calc(100vh - 120px);
padding: 60px 20px;
}

.error-content {
padding: 40px 30px;
}

.error-content h1 {
font-size: 4rem;
}

.error-content h2 {
font-size: 1.6rem;
}

.error-actions {
flex-direction: column;
}

.error-actions .cta-button,
.error-actions .secondary-button {
width: 100%;
}
}

@media (max-width: 480px) {
.error-content {
padding: 35px 25px;
}

.error-icon {
width: 80px;
height: 80px;
}

.error-icon i {
font-size: 40px;
}

.error-content h1 {
font-size: 3rem;
}

.error-content h2 {
font-size: 1.4rem;
}
}
