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

body {
font-family: 'Quicksand', sans-serif;
line-height: 1.6;
color: #1a2332;
background: #fff;
font-size: 14px;
}

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

.header {
background: #1a2332;
padding: 15px 0;
position: relative;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
font-family: 'Comfortaa', cursive;
font-size: 20px;
font-weight: 700;
color: #fff;
}

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

.nav a {
color: #fff;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: color 0.3s;
}

.nav a:hover {
color: #26a69a;
}

.menu-toggle {
display: none;
background: none;
border: none;
color: #fff;
font-size: 22px;
cursor: pointer;
}

.hero-modern {
position: relative;
background: linear-gradient(135deg, #26a69a 0%, #1a2332 100%);
padding: 100px 0 80px;
overflow: hidden;
}

.hero-bg-shape {
position: absolute;
width: 600px;
height: 600px;
background: rgba(255,255,255,0.05);
border-radius: 50%;
top: -200px;
right: -100px;
}

.hero-bg-shape-two {
position: absolute;
width: 400px;
height: 400px;
background: rgba(255,255,255,0.03);
border-radius: 50%;
bottom: -150px;
left: -100px;
}

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

.hero-text-side {
color: #fff;
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 8px 20px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
backdrop-filter: blur(10px);
}

.hero-text-side h1 {
font-family: 'Comfortaa', cursive;
font-size: 48px;
line-height: 1.2;
margin-bottom: 20px;
}

.hero-text-side p {
font-size: 16px;
line-height: 1.8;
margin-bottom: 30px;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.btn-hero-primary {
display: inline-block;
background: #ff6b6b;
color: #fff;
padding: 14px 32px;
text-decoration: none;
border-radius: 30px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: none;
cursor: pointer;
box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.btn-hero-primary:hover {
background: #ff5252;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

.btn-hero-secondary {
display: inline-block;
background: transparent;
color: #fff;
padding: 14px 32px;
text-decoration: none;
border-radius: 30px;
font-weight: 600;
font-size: 14px;
border: 2px solid #fff;
transition: all 0.3s;
}

.btn-hero-secondary:hover {
background: #fff;
color: #26a69a;
}

.hero-stats {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.stat-item {
text-align: left;
}

.stat-number {
font-family: 'Comfortaa', cursive;
font-size: 32px;
font-weight: 700;
color: #ffd93d;
line-height: 1;
margin-bottom: 5px;
}

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

.hero-image-side {
position: relative;
}

.hero-image-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.hero-float-card {
position: absolute;
bottom: 30px;
left: 30px;
background: #fff;
padding: 20px 25px;
border-radius: 15px;
display: flex;
align-items: center;
gap: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-float-card i {
font-size: 28px;
color: #ffd93d;
}

.float-title {
font-weight: 700;
font-size: 16px;
color: #1a2332;
line-height: 1;
margin-bottom: 3px;
}

.float-text {
font-size: 12px;
color: #666;
}

.btn-primary {
display: inline-block;
background: #ff6b6b;
color: #fff;
padding: 12px 30px;
text-decoration: none;
border-radius: 25px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
background: #ff5252;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: #26a69a;
padding: 12px 30px;
text-decoration: none;
border-radius: 25px;
font-weight: 600;
font-size: 14px;
border: 2px solid #26a69a;
transition: all 0.3s;
}

.btn-secondary:hover {
background: #26a69a;
color: #fff;
}

.section-label {
display: inline-block;
color: #26a69a;
font-weight: 700;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}

.section-header-center {
text-align: center;
margin-bottom: 50px;
}

.section-header-center h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
color: #1a2332;
margin-bottom: 15px;
}

.section-header-center p {
font-size: 16px;
color: #666;
max-width: 600px;
margin: 0 auto;
}

.features-modern {
padding: 60px 0;
background: #f8f9fa;
}

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

.feature-modern {
text-align: center;
}

.feature-icon-wrap {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #26a69a, #1a2332);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.feature-icon-wrap i {
font-size: 30px;
color: #fff;
}

.feature-modern h3 {
font-family: 'Comfortaa', cursive;
font-size: 18px;
margin-bottom: 10px;
color: #1a2332;
}

.feature-modern p {
font-size: 13px;
color: #666;
line-height: 1.6;
}

.about-story {
padding: 80px 0;
}

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

.story-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
color: #1a2332;
margin-bottom: 25px;
}

.story-content p {
font-size: 15px;
color: #666;
line-height: 1.8;
margin-bottom: 20px;
}

.story-image img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.categories-showcase {
padding: 80px 0;
background: #f8f9fa;
}

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

.category-card-modern {
background: #fff;
padding: 35px;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.category-card-modern:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.category-icon-modern {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #ffd93d, #ff6b6b);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.category-icon-modern i {
font-size: 28px;
color: #fff;
}

.category-card-modern h3 {
font-family: 'Comfortaa', cursive;
font-size: 20px;
color: #1a2332;
margin-bottom: 12px;
}

.category-card-modern p {
font-size: 14px;
color: #666;
line-height: 1.7;
margin-bottom: 20px;
}

.category-link {
color: #26a69a;
text-decoration: none;
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s;
}

.category-link:hover {
gap: 12px;
}

.testimonials-modern {
padding: 80px 0;
}

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

.testimonial-modern {
background: #fff;
padding: 35px;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
border-top: 4px solid #26a69a;
}

.testimonial-stars {
color: #ffd93d;
margin-bottom: 20px;
font-size: 16px;
}

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

.testimonial-author {
border-top: 1px solid #eee;
padding-top: 15px;
}

.author-name {
font-weight: 700;
font-size: 15px;
color: #1a2332;
margin-bottom: 3px;
}

.author-location {
font-size: 12px;
color: #999;
}

.workshop-section {
padding: 80px 0;
background: linear-gradient(135deg, #1a2332 0%, #26a69a 100%);
color: #fff;
}

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

.workshop-text h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
margin-bottom: 25px;
}

.workshop-text p {
font-size: 15px;
line-height: 1.8;
margin-bottom: 20px;
opacity: 0.95;
}

.workshop-text .section-label {
color: #ffd93d;
}

.workshop-stats {
display: flex;
flex-direction: column;
gap: 30px;
}

.workshop-stat {
background: rgba(255,255,255,0.1);
padding: 30px;
border-radius: 15px;
display: flex;
align-items: center;
gap: 20px;
backdrop-filter: blur(10px);
}

.workshop-stat i {
font-size: 40px;
color: #ffd93d;
}

.workshop-stat-number {
font-family: 'Comfortaa', cursive;
font-size: 32px;
font-weight: 700;
line-height: 1;
margin-bottom: 5px;
}

.workshop-stat-text {
font-size: 14px;
opacity: 0.9;
}

.visit-store {
padding: 80px 0;
}

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

.visit-info h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
color: #1a2332;
margin-bottom: 30px;
}

.visit-details {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 30px;
}

.visit-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.visit-item i {
font-size: 24px;
color: #26a69a;
flex-shrink: 0;
margin-top: 3px;
}

.visit-item strong {
display: block;
font-family: 'Comfortaa', cursive;
font-size: 16px;
color: #1a2332;
margin-bottom: 5px;
}

.visit-item p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.visit-image img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.footer {
background: #1a2332;
color: #fff;
padding: 25px 0;
font-size: 12px;
}

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

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

.footer-links a {
color: #fff;
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: #26a69a;
}

.products-featured {
padding: 80px 0;
}

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

.product-modern {
background: #fff;
border-radius: 15px;
padding: 30px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
position: relative;
transition: all 0.3s;
}

.product-modern:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-badge {
position: absolute;
top: 20px;
right: 20px;
background: #ff6b6b;
color: #fff;
padding: 6px 15px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
}

.product-image-modern {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
padding: 50px;
border-radius: 12px;
margin-bottom: 25px;
text-align: center;
}

.product-image-modern i {
font-size: 60px;
color: #26a69a;
}

.product-modern h3 {
font-family: 'Comfortaa', cursive;
font-size: 20px;
color: #1a2332;
margin-bottom: 15px;
}

.product-modern p {
font-size: 13px;
color: #666;
line-height: 1.7;
margin-bottom: 20px;
}

.product-price {
font-family: 'Comfortaa', cursive;
font-size: 28px;
font-weight: 700;
color: #ff6b6b;
margin-bottom: 20px;
}

.supply-categories {
padding: 80px 0;
background: #f8f9fa;
}

.supply-list-modern {
display: grid;
gap: 30px;
}

.supply-modern {
background: #fff;
padding: 35px;
border-radius: 15px;
display: flex;
gap: 30px;
align-items: flex-start;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.supply-modern:hover {
transform: translateX(5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.supply-icon-modern {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #26a69a, #1a2332);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.supply-icon-modern i {
font-size: 32px;
color: #fff;
}

.supply-content h3 {
font-family: 'Comfortaa', cursive;
font-size: 22px;
color: #1a2332;
margin-bottom: 12px;
}

.supply-content p {
font-size: 14px;
color: #666;
line-height: 1.8;
}

.kits-intro-modern {
padding: 80px 0;
}

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

.kits-image-modern img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.kits-text-modern h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
color: #1a2332;
margin-bottom: 25px;
}

.kits-text-modern p {
font-size: 15px;
color: #666;
line-height: 1.8;
margin-bottom: 20px;
}

.kit-types-modern {
padding: 80px 0;
background: #f8f9fa;
}

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

.kit-modern {
background: #fff;
padding: 35px;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.kit-modern:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.kit-icon-modern {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #ffd93d, #ff6b6b);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.kit-icon-modern i {
font-size: 28px;
color: #fff;
}

.kit-modern h3 {
font-family: 'Comfortaa', cursive;
font-size: 20px;
color: #1a2332;
margin-bottom: 12px;
}

.kit-modern p {
font-size: 14px;
color: #666;
line-height: 1.7;
}

.kit-benefits-modern {
padding: 80px 0;
}

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

.benefit-modern {
text-align: center;
}

.benefit-icon-modern {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #26a69a, #1a2332);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.benefit-icon-modern i {
font-size: 30px;
color: #fff;
}

.benefit-modern h3 {
font-family: 'Comfortaa', cursive;
font-size: 18px;
color: #1a2332;
margin-bottom: 10px;
}

.benefit-modern p {
font-size: 13px;
color: #666;
line-height: 1.6;
}

.contact-modern {
padding: 80px 0;
}

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

.contact-info-modern h2 {
font-family: 'Comfortaa', cursive;
font-size: 32px;
color: #1a2332;
margin-bottom: 20px;
}

.contact-info-modern > p {
font-size: 15px;
color: #666;
line-height: 1.8;
margin-bottom: 35px;
}

.contact-details-modern {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-detail-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.contact-icon-modern {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #26a69a, #1a2332);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon-modern i {
font-size: 22px;
color: #fff;
}

.contact-detail-item h4 {
font-family: 'Comfortaa', cursive;
font-size: 16px;
color: #1a2332;
margin-bottom: 5px;
}

.contact-detail-item p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.contact-form-modern {
background: #f8f9fa;
padding: 40px;
border-radius: 15px;
}

.contact-form-modern h3 {
font-family: 'Comfortaa', cursive;
font-size: 28px;
color: #1a2332;
margin-bottom: 15px;
}

.contact-form-modern > p {
font-size: 14px;
color: #666;
margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-family: 'Quicksand', sans-serif;
font-size: 14px;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #26a69a;
}

.checkbox-group label {
display: flex;
gap: 10px;
align-items: flex-start;
font-size: 12px;
color: #666;
cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
width: auto;
margin-top: 3px;
flex-shrink: 0;
}

.checkbox-group a {
color: #26a69a;
text-decoration: none;
}

.checkbox-group a:hover {
text-decoration: underline;
}

.map-modern {
padding: 80px 0;
background: #f8f9fa;
}

.map-modern h2 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
color: #1a2332;
margin-bottom: 40px;
text-align: center;
}

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

.thankyou-modern {
padding: 80px 0;
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
}

.thankyou-content-modern {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

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

.success-icon i {
font-size: 50px;
color: #fff;
}

.thankyou-content-modern h1 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
color: #1a2332;
margin-bottom: 25px;
}

.thankyou-content-modern p {
font-size: 15px;
color: #666;
line-height: 1.8;
margin-bottom: 20px;
}

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

.error-modern {
padding: 80px 0;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
}

.error-content-modern {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.error-number {
font-family: 'Comfortaa', cursive;
font-size: 120px;
font-weight: 700;
background: linear-gradient(135deg, #26a69a, #ff6b6b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 20px;
}

.error-content-modern h1 {
font-family: 'Comfortaa', cursive;
font-size: 32px;
color: #1a2332;
margin-bottom: 25px;
}

.error-content-modern p {
font-size: 15px;
color: #666;
line-height: 1.8;
margin-bottom: 20px;
}

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

.policy-section {
padding: 60px 0;
}

.policy-section h1 {
font-family: 'Comfortaa', cursive;
font-size: 36px;
color: #1a2332;
margin-bottom: 10px;
}

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

.policy-content h2 {
font-family: 'Comfortaa', cursive;
font-size: 24px;
color: #1a2332;
margin-top: 35px;
margin-bottom: 15px;
}

.policy-content p {
font-size: 14px;
color: #666;
line-height: 1.8;
margin-bottom: 20px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #1a2332;
color: #fff;
padding: 20px;
z-index: 1000;
display: none;
box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.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 {
font-size: 13px;
margin: 0;
}

.accept-btn {
background: #26a69a;
color: #fff;
border: none;
padding: 10px 30px;
border-radius: 25px;
cursor: pointer;
font-family: 'Quicksand', sans-serif;
font-weight: 600;
font-size: 13px;
transition: background 0.3s;
}

.accept-btn:hover {
background: #1f8a7e;
}

@media (max-width: 1024px) {
.hero-text-side h1 {
font-size: 40px;
}

.categories-grid-modern,
.products-grid-modern,
.kit-grid-modern {
grid-template-columns: repeat(2, 1fr);
}

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

@media (max-width: 768px) {
.nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
background: #1a2332;
flex-direction: column;
padding: 20px;
gap: 15px;
transition: left 0.3s;
z-index: 999;
}

.nav.active {
left: 0;
}

.menu-toggle {
display: block;
}

.hero-modern {
padding: 60px 0 50px;
}

.hero-grid,
.story-grid,
.kits-grid-modern,
.visit-grid,
.contact-grid-modern,
.workshop-content {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-text-side h1 {
font-size: 32px;
}

.hero-text-side p {
font-size: 14px;
}

.hero-stats {
gap: 30px;
}

.stat-number {
font-size: 28px;
}

.hero-float-card {
bottom: 20px;
left: 20px;
padding: 15px 20px;
}

.features-grid-modern,
.benefits-grid-modern {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}

.categories-grid-modern,
.products-grid-modern,
.kit-grid-modern,
.testimonials-grid-modern {
grid-template-columns: 1fr;
}

.section-header-center h2,
.story-content h2,
.workshop-text h2,
.visit-info h2,
.kits-text-modern h2 {
font-size: 28px;
}

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

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

.logo {
font-size: 16px;
}

.hero-modern {
padding: 50px 0 40px;
}

.hero-text-side h1 {
font-size: 26px;
}

.hero-text-side p {
font-size: 13px;
}

.hero-badge {
font-size: 11px;
padding: 6px 15px;
}

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

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

.hero-stats {
gap: 20px;
}

.stat-number {
font-size: 24px;
}

.stat-label {
font-size: 12px;
}

.hero-float-card {
bottom: 15px;
left: 15px;
padding: 12px 15px;
}

.hero-float-card i {
font-size: 22px;
}

.float-title {
font-size: 14px;
}

.float-text {
font-size: 11px;
}

.features-grid-modern,
.benefits-grid-modern {
grid-template-columns: 1fr;
}

.section-header-center h2 {
font-size: 24px;
}

.section-header-center p {
font-size: 14px;
}

.feature-icon-wrap,
.benefit-icon-modern {
width: 60px;
height: 60px;
}

.feature-icon-wrap i,
.benefit-icon-modern i {
font-size: 26px;
}

.feature-modern h3,
.benefit-modern h3 {
font-size: 16px;
}

.story-content h2,
.workshop-text h2,
.visit-info h2,
.kits-text-modern h2 {
font-size: 24px;
}

.category-card-modern,
.product-modern,
.kit-modern,
.supply-modern {
padding: 25px;
}

.category-icon-modern,
.kit-icon-modern {
width: 50px;
height: 50px;
}

.category-icon-modern i,
.kit-icon-modern i {
font-size: 24px;
}

.supply-icon-modern {
width: 60px;
height: 60px;
}

.supply-icon-modern i {
font-size: 28px;
}

.product-image-modern {
padding: 40px;
}

.product-image-modern i {
font-size: 50px;
}

.product-price {
font-size: 24px;
}

.workshop-stat {
padding: 25px;
}

.workshop-stat i {
font-size: 32px;
}

.workshop-stat-number {
font-size: 28px;
}

.contact-form-modern {
padding: 30px;
}

.contact-icon-modern {
width: 45px;
height: 45px;
}

.contact-icon-modern i {
font-size: 20px;
}

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

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

.thankyou-content-modern h1,
.error-content-modern h1 {
font-size: 26px;
}

.error-number {
font-size: 80px;
}

.policy-section h1 {
font-size: 28px;
}

.policy-content h2 {
font-size: 20px;
}
}

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

.logo {
font-size: 14px;
}

.hero-text-side h1 {
font-size: 22px;
}

.hero-text-side p {
font-size: 12px;
}

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

.stat-number {
font-size: 20px;
}

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

.section-header-center h2 {
font-size: 20px;
}

.feature-modern h3,
.benefit-modern h3,
.category-card-modern h3,
.kit-modern h3 {
font-size: 15px;
}

.story-content h2,
.workshop-text h2,
.visit-info h2,
.kits-text-modern h2 {
font-size: 20px;
}

.category-card-modern,
.product-modern,
.kit-modern {
padding: 20px;
}

.supply-modern {
flex-direction: column;
padding: 20px;
text-align: center;
}

.supply-icon-modern {
margin: 0 auto;
}

.error-number {
font-size: 60px;
}
}
