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

:root {
--primary: #1a2332;
--secondary: #8b6f47;
--accent: #c9a961;
--light: #f5f1eb;
}

body {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
line-height: 1.6;
color: var(--primary);
background: #fff;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
line-height: 1.3;
}

h1 { font-size: 2.8rem; }
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;
}

.section-label {
display: inline-block;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--secondary);
margin-bottom: 15px;
font-weight: 500;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary);
color: #fff;
padding: 15px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

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

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

.privacy-actions {
display: flex;
gap: 10px;
}

.btn-accept, .btn-learn {
padding: 8px 20px;
border-radius: 4px;
font-size: 13px;
cursor: pointer;
border: none;
transition: all 0.3s ease;
}

.btn-accept {
background: var(--accent);
color: var(--primary);
font-weight: 500;
}

.btn-accept:hover {
background: var(--secondary);
color: #fff;
}

.btn-learn {
background: transparent;
color: #fff;
border: 1px solid #fff;
display: inline-block;
}

.btn-learn:hover {
background: #fff;
color: var(--primary);
}

.header {
background: rgba(255, 255, 255, 0.98);
border-bottom: 1px solid rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--primary);
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--primary);
transition: all 0.3s ease;
}

.nav {
display: flex;
gap: 30px;
}

.nav-link {
font-size: 14px;
color: var(--primary);
font-weight: 400;
position: relative;
}

.nav-link:hover, .nav-link.active {
color: var(--secondary);
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
width: 100%;
}

.hero-mega {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
overflow: hidden;
padding: 80px 0;
}

.hero-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 1;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.4;
}

.shape-1 {
width: 400px;
height: 400px;
background: linear-gradient(135deg, var(--accent), var(--secondary));
top: -200px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: linear-gradient(225deg, var(--secondary), var(--primary));
bottom: -150px;
left: -100px;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--accent);
top: 50%;
left: 10%;
opacity: 0.2;
}

.hero-mega-grid {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.hero-label {
display: inline-block;
padding: 6px 16px;
background: var(--primary);
color: #fff;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1.5px;
border-radius: 20px;
margin-bottom: 25px;
}

.hero-mega-content h1 {
margin-bottom: 25px;
color: var(--primary);
}

.hero-mega-content p {
font-size: 16px;
line-height: 1.8;
margin-bottom: 35px;
color: var(--primary);
opacity: 0.85;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-bottom: 35px;
}

.stat {
display: flex;
flex-direction: column;
}

.stat strong {
font-size: 2rem;
font-family: 'Cormorant Garamond', serif;
color: var(--secondary);
line-height: 1;
margin-bottom: 5px;
}

.stat span {
font-size: 12px;
color: var(--primary);
opacity: 0.7;
}

.hero-mega-visual {
position: relative;
}

.hero-card {
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
transform: rotate(2deg);
transition: transform 0.4s ease;
}

.hero-card:hover {
transform: rotate(0deg) scale(1.02);
}

.hero-card img {
width: 100%;
display: block;
}

.hero-card-label {
position: absolute;
bottom: 30px;
left: 30px;
background: rgba(255,255,255,0.95);
padding: 12px 24px;
border-radius: 6px;
font-weight: 500;
color: var(--primary);
font-size: 14px;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 14px 32px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.btn-primary {
background: var(--primary);
color: #fff;
}

.btn-primary:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
}

.btn-secondary:hover {
background: var(--primary);
color: #fff;
}

section {
padding: 80px 0;
}

.philosophy {
background: #fff;
}

.philosophy-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}

.philosophy-content h2 {
margin-bottom: 25px;
color: var(--primary);
}

.philosophy-content p {
margin-bottom: 20px;
line-height: 1.8;
}

.philosophy-features {
display: grid;
gap: 25px;
}

.feature-box {
padding: 25px;
background: var(--light);
border-radius: 8px;
border-left: 4px solid var(--secondary);
}

.feature-box h3 {
margin-bottom: 10px;
color: var(--primary);
}

.feature-box p {
font-size: 13px;
line-height: 1.7;
}

.showcase-modern {
background: var(--light);
}

.showcase-modern h2 {
text-align: center;
margin-bottom: 60px;
color: var(--primary);
}

.showcase-modern-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 30px;
}

.showcase-modern-item {
position: relative;
border-radius: 12px;
overflow: hidden;
background: #fff;
}

.showcase-modern-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.showcase-modern-item:hover img {
transform: scale(1.05);
}

.showcase-modern-info {
padding: 30px;
}

.showcase-modern-info h3 {
margin-bottom: 15px;
color: var(--primary);
}

.showcase-modern-info p {
font-size: 13px;
line-height: 1.7;
margin-bottom: 15px;
}

.project-year {
display: inline-block;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--secondary);
font-weight: 500;
}

.process-modern {
background: #fff;
}

.process-modern h2 {
text-align: center;
margin-bottom: 60px;
color: var(--primary);
}

.process-timeline {
max-width: 900px;
margin: 0 auto;
display: grid;
gap: 40px;
}

.process-item {
display: grid;
grid-template-columns: 80px 1fr;
gap: 30px;
}

.process-icon {
width: 80px;
height: 80px;
background: var(--primary);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
flex-shrink: 0;
}

.process-details h3 {
margin-bottom: 12px;
color: var(--primary);
}

.process-details p {
font-size: 13px;
line-height: 1.7;
}

.materials-intro {
background: var(--primary);
color: #fff;
}

.materials-intro-content h2 {
margin-bottom: 25px;
color: #fff;
}

.materials-intro-content > p {
margin-bottom: 40px;
line-height: 1.8;
opacity: 0.9;
}

.wood-types {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
margin-bottom: 40px;
}

.wood-type {
padding: 25px;
background: rgba(255,255,255,0.08);
border-radius: 8px;
border-left: 3px solid var(--accent);
}

.wood-type h4 {
margin-bottom: 10px;
color: var(--accent);
}

.wood-type p {
font-size: 13px;
line-height: 1.7;
opacity: 0.9;
}

.materials-intro .btn-secondary {
border-color: #fff;
color: #fff;
}

.materials-intro .btn-secondary:hover {
background: #fff;
color: var(--primary);
}

.testimonials {
background: var(--light);
}

.testimonials h2 {
text-align: center;
margin-bottom: 60px;
color: var(--primary);
}

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

.testimonial-card {
background: #fff;
padding: 35px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-card p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 25px;
font-style: italic;
}

.testimonial-author strong {
display: block;
color: var(--primary);
margin-bottom: 5px;
font-size: 14px;
}

.testimonial-author span {
font-size: 12px;
color: var(--secondary);
}

.workshop {
background: #fff;
}

.workshop-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.workshop-content h2 {
margin-bottom: 25px;
color: var(--primary);
}

.workshop-content > p {
margin-bottom: 20px;
line-height: 1.8;
}

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

.workshop-detail {
display: flex;
flex-direction: column;
gap: 8px;
}

.workshop-detail strong {
color: var(--primary);
font-size: 14px;
}

.workshop-detail span {
font-size: 13px;
color: var(--secondary);
}

.final-cta {
background: var(--accent);
text-align: center;
padding: 100px 0;
}

.final-cta-content h2 {
margin-bottom: 15px;
color: var(--primary);
font-size: 2.5rem;
}

.final-cta-content p {
margin-bottom: 35px;
font-size: 16px;
}

.page-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: #fff;
text-align: center;
padding: 100px 0;
}

.page-hero h1 {
margin-bottom: 15px;
}

.page-hero p {
font-size: 16px;
opacity: 0.95;
}

.footer {
background: var(--primary);
color: #fff;
padding: 30px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
font-size: 13px;
opacity: 0.9;
}

.footer-links {
display: flex;
gap: 25px;
}

.footer-links a {
font-size: 13px;
opacity: 0.9;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
color: var(--accent);
}

@media (max-width: 992px) {
h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }

.hero-mega {
min-height: auto;
padding: 60px 0;
}

.hero-mega-grid {
grid-template-columns: 1fr;
gap: 50px;
}

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.philosophy-grid {
grid-template-columns: 1fr;
gap: 40px;
}

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

.wood-types {
grid-template-columns: 1fr;
}

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

.workshop-details {
grid-template-columns: 1fr;
gap: 20px;
}
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
flex-direction: column;
gap: 0;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav.active {
max-height: 300px;
}

.nav-link {
padding: 15px 20px;
border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-link::after {
display: none;
}

section {
padding: 60px 0;
}

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}

.stat strong {
font-size: 1.5rem;
}

.stat span {
font-size: 11px;
}

.process-item {
grid-template-columns: 60px 1fr;
gap: 20px;
}

.process-icon {
width: 60px;
height: 60px;
font-size: 1.2rem;
}

.final-cta {
padding: 70px 0;
}

.final-cta-content h2 {
font-size: 2rem;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }

.hero-mega {
padding: 40px 0;
}

.hero-mega-content p {
font-size: 14px;
}

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

.stat {
flex-direction: row;
align-items: center;
gap: 10px;
}

.stat strong {
font-size: 1.8rem;
}

.btn-primary, .btn-secondary {
padding: 12px 28px;
font-size: 13px;
width: 100%;
text-align: center;
}

.privacy-content {
flex-direction: column;
align-items: flex-start;
}

.privacy-actions {
width: 100%;
}

.btn-accept, .btn-learn {
flex: 1;
text-align: center;
}

.footer-content {
flex-direction: column;
text-align: center;
}

.footer-links {
flex-direction: column;
gap: 15px;
}
}

@media (max-width: 320px) {
body {
font-size: 13px;
}

h1 { font-size: 1.6rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }

.hero-mega {
padding: 30px 0;
}

.hero-label {
font-size: 10px;
padding: 5px 12px;
}

.hero-mega-content p {
font-size: 13px;
}

.stat strong {
font-size: 1.5rem;
}

.stat span {
font-size: 10px;
}

.btn-primary, .btn-secondary {
padding: 10px 24px;
font-size: 12px;
}

section {
padding: 40px 0;
}

.feature-box, .wood-type, .testimonial-card {
padding: 20px;
}

.process-icon {
width: 50px;
height: 50px;
font-size: 1rem;
}

.final-cta {
padding: 50px 0;
}

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


.contact-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: #fff;
text-align: center;
padding: 100px 0;
}

.contact-hero h1 {
margin-bottom: 15px;
}

.contact-hero p {
font-size: 16px;
opacity: 0.95;
}

.contact-main {
padding: 80px 0;
background: var(--light);
}

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

.contact-info-section h2 {
margin-bottom: 20px;
color: var(--primary);
}

.contact-info-section > p {
margin-bottom: 30px;
line-height: 1.8;
}

.contact-details {
display: grid;
gap: 25px;
}

.contact-detail {
display: flex;
gap: 20px;
}

.contact-detail i {
font-size: 1.5rem;
color: var(--secondary);
flex-shrink: 0;
margin-top: 5px;
}

.contact-detail h3 {
margin-bottom: 5px;
color: var(--primary);
font-size: 1.1rem;
}

.contact-detail p {
font-size: 13px;
line-height: 1.7;
}

.contact-form-section {
background: #fff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
margin-bottom: 30px;
color: var(--primary);
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
font-size: 13px;
color: var(--primary);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 6px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

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

.form-group textarea {
resize: vertical;
}

.checkbox-group {
margin-top: 25px;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-size: 13px;
line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
width: auto;
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--secondary);
text-decoration: underline;
}

.contact-form button {
width: 100%;
margin-top: 10px;
}

.map-section {
padding: 0 0 80px 0;
}

.map-section h2 {
text-align: center;
margin-bottom: 40px;
color: var(--primary);
}

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

.thankyou-content, .error-content {
min-height: calc(100vh - 140px);
display: flex;
align-items: center;
justify-content: center;
background: var(--light);
}

.thankyou-box, .error-box {
text-align: center;
max-width: 600px;
padding: 60px 40px;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.thankyou-box i {
font-size: 4rem;
color: var(--secondary);
margin-bottom: 30px;
}

.thankyou-box h1, .error-box h1 {
margin-bottom: 20px;
color: var(--primary);
}

.error-box h1 {
font-size: 5rem;
color: var(--secondary);
}

.error-box h2 {
margin-bottom: 20px;
color: var(--primary);
}

.thankyou-box p, .error-box p {
margin-bottom: 15px;
line-height: 1.8;
}

.thankyou-actions, .error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}

.policy-content {
padding: 80px 0;
background: var(--light);
}

.policy-wrapper {
max-width: 900px;
margin: 0 auto;
background: #fff;
padding: 50px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.policy-wrapper h1 {
margin-bottom: 10px;
color: var(--primary);
}

.policy-date {
color: #666;
font-size: 13px;
margin-bottom: 40px;
}

.policy-section {
margin-bottom: 40px;
}

.policy-section h2 {
margin-bottom: 20px;
color: var(--primary);
font-size: 1.5rem;
}

.policy-section h3 {
margin: 20px 0 15px;
color: var(--secondary);
}

.policy-section p {
margin-bottom: 15px;
line-height: 1.8;
}

.policy-section ul {
margin: 15px 0;
padding-left: 25px;
}

.policy-section li {
margin-bottom: 10px;
line-height: 1.8;
}

.products {
background: var(--light);
}

.products h2 {
text-align: center;
margin-bottom: 60px;
color: var(--primary);
}

.products-grid {
display: grid;
gap: 50px;
}

.product-card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-info {
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
}

.product-info h3 {
margin-bottom: 20px;
color: var(--primary);
}

.product-info p {
margin-bottom: 25px;
font-size: 13px;
line-height: 1.8;
}

.product-price {
font-size: 1.8rem;
font-family: 'Cormorant Garamond', serif;
color: var(--secondary);
margin-bottom: 25px;
font-weight: 600;
}

.features {
text-align: center;
background: #fff;
}

.features h2 {
margin-bottom: 60px;
color: var(--primary);
}

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

.feature-item {
padding: 30px 20px;
}

.feature-item i {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 20px;
}

.feature-item h3 {
margin-bottom: 10px;
color: var(--primary);
}

.feature-item p {
font-size: 13px;
line-height: 1.7;
}

.customization {
background: var(--light);
}

.customization-content {
text-align: center;
}

.customization-content h2 {
margin-bottom: 60px;
color: var(--primary);
}

.customization-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
margin-bottom: 50px;
text-align: left;
}

.custom-option {
padding: 35px;
background: #fff;
border-radius: 12px;
border-left: 4px solid var(--secondary);
}

.custom-option h3 {
margin-bottom: 12px;
color: var(--primary);
}

.custom-option p {
font-size: 13px;
line-height: 1.7;
}

.materials {
background: #fff;
}

.materials h2 {
text-align: center;
margin-bottom: 60px;
color: var(--primary);
}

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

.material-card {
padding: 35px;
background: var(--light);
border-radius: 12px;
text-align: center;
transition: transform 0.3s ease;
}

.material-card:hover {
transform: translateY(-5px);
}

.material-card i {
font-size: 3rem;
color: var(--secondary);
margin-bottom: 20px;
}

.material-card h3 {
margin-bottom: 15px;
color: var(--primary);
}

.material-card p {
font-size: 13px;
line-height: 1.7;
}

.finishes {
background: var(--light);
}

.finishes h2 {
text-align: center;
margin-bottom: 60px;
color: var(--primary);
}

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

.finish-category {
padding: 35px;
background: #fff;
border-radius: 12px;
}

.finish-category h3 {
margin-bottom: 15px;
color: var(--primary);
}

.finish-category p {
margin-bottom: 20px;
font-size: 13px;
line-height: 1.7;
}

.finish-category ul {
list-style: none;
}

.finish-category li {
padding: 10px 0;
padding-left: 25px;
position: relative;
font-size: 13px;
}

.finish-category li::before {
content: '\f00c';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
left: 0;
color: var(--secondary);
}

.sustainability {
background: var(--primary);
color: #fff;
}

.sustainability-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.sustainability-text h2 {
margin-bottom: 25px;
color: #fff;
}

.sustainability-text p {
margin-bottom: 20px;
opacity: 0.95;
line-height: 1.8;
}

.sustainability-icons {
display: grid;
gap: 25px;
}

.sustain-icon {
display: flex;
align-items: center;
gap: 20px;
padding: 25px;
background: rgba(255,255,255,0.08);
border-radius: 8px;
}

.sustain-icon i {
font-size: 2rem;
color: var(--accent);
}

.sustain-icon span {
font-size: 1.1rem;
}

.care {
text-align: center;
background: #fff;
}

.care h2 {
margin-bottom: 60px;
color: var(--primary);
}

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

.care-item {
padding: 30px 20px;
background: var(--light);
border-radius: 12px;
}

.care-item i {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 20px;
}

.care-item h3 {
margin-bottom: 10px;
color: var(--primary);
}

.care-item p {
font-size: 13px;
line-height: 1.7;
}

@media (max-width: 992px) {
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

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

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

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

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

.finishes-content {
grid-template-columns: 1fr;
}

.sustainability-content {
grid-template-columns: 1fr;
}

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

@media (max-width: 768px) {
.contact-form-section {
padding: 30px 20px;
}

.thankyou-box, .error-box {
padding: 40px 25px;
}

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

.policy-wrapper {
padding: 30px 20px;
}
}

@media (max-width: 480px) {
.thankyou-actions, .error-actions {
flex-direction: column;
}

.thankyou-actions a, .error-actions a {
width: 100%;
text-align: center;
}

.features-grid, .materials-grid, .care-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 320px) {
.contact-form-section {
padding: 25px 15px;
}

.product-info {
padding: 25px;
}

.feature-box, .wood-type, .testimonial-card, .custom-option, .material-card, .finish-category, .care-item {
padding: 20px;
}
}
