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

:root {
--primary-color: #0077be;
--secondary-color: #00a8e8;
--accent-color: #00c9ff;
--dark-color: #1a1a2e;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.5;
color: #333;
font-size: 14px;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark-color);
color: white;
padding: 15px;
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: 15px;
flex-wrap: wrap;
}

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

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

.privacy-buttons a,
.privacy-buttons button {
padding: 8px 16px;
border-radius: 4px;
text-decoration: none;
font-size: 13px;
cursor: pointer;
border: none;
}

.privacy-buttons a {
background: transparent;
color: white;
border: 1px solid white;
}

.privacy-buttons button {
background: var(--primary-color);
color: white;
}

.header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 12px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: white;
}

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

.nav a {
color: white;
text-decoration: none;
font-size: 14px;
transition: opacity 0.3s;
}

.nav a:hover {
opacity: 0.8;
}

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

.menu-toggle span {
width: 24px;
height: 2px;
background: white;
transition: 0.3s;
}

.hero {
background: linear-gradient(135deg, #0066cc 0%, #0099ff 50%, #00ccff 100%);
color: white;
padding: 0;
position: relative;
overflow: hidden;
min-height: 600px;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(0,200,255,0.3) 0%, transparent 50%);
pointer-events: none;
}

.hero .container {
position: relative;
z-index: 1;
}

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
min-height: 600px;
padding: 60px 0;
}

.hero-text {
animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

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

.hero h1 {
font-size: 48px;
margin-bottom: 20px;
line-height: 1.2;
}

.hero h1 .highlight {
background: linear-gradient(90deg, #fff, #00ccff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero p {
font-size: 17px;
margin-bottom: 30px;
line-height: 1.7;
opacity: 0.95;
}

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

.btn-primary {
background: white;
color: var(--primary-color);
padding: 12px 28px;
border-radius: 6px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
border: none;
text-decoration: none;
display: inline-block;
cursor: pointer;
}

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

.btn-outline {
background: transparent;
color: white;
padding: 12px 28px;
border: 2px solid white;
border-radius: 6px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}

.btn-outline:hover {
background: white;
color: var(--primary-color);
}

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

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

.stat-item strong {
font-size: 28px;
font-weight: 700;
margin-bottom: 5px;
}

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

.hero-image {
position: relative;
animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.page-hero h1 {
font-size: 28px;
margin-bottom: 10px;
}

.page-hero p {
font-size: 15px;
}

.btn {
display: inline-block;
padding: 10px 24px;
background: white;
color: var(--primary-color);
text-decoration: none;
border-radius: 4px;
font-weight: 600;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
border: none;
cursor: pointer;
}

.btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
}

section {
padding: 40px 0;
}

section h2 {
font-size: 24px;
margin-bottom: 20px;
text-align: center;
color: var(--dark-color);
}

section p {
margin-bottom: 15px;
}

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

.section-label {
display: inline-block;
background: var(--primary-color);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
}

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

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

.features {
background: #f8f9fa;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
margin-top: 30px;
}

.feature-item {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
font-size: 36px;
margin-bottom: 15px;
}

.feature-item h3 {
font-size: 19px;
margin-bottom: 12px;
color: var(--dark-color);
}

.feature-item p {
font-size: 14px;
margin: 0;
line-height: 1.7;
color: #555;
}

.about-content {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 50px;
align-items: center;
margin-top: 30px;
}

.about-text {
padding-right: 20px;
}

.about-text h2 {
text-align: left;
font-size: 32px;
margin-bottom: 20px;
}

.about-text p {
margin-bottom: 18px;
line-height: 1.8;
color: #555;
}

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

.products {
background: #f8f9fa;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 30px;
}

.product-card {
background: white;
padding: 35px 30px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: center;
position: relative;
transition: transform 0.3s, box-shadow 0.3s;
border: 2px solid transparent;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.product-card.featured {
border-color: var(--primary-color);
box-shadow: 0 8px 30px rgba(0,119,190,0.2);
}

.product-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--dark-color);
color: white;
padding: 6px 18px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.product-badge.popular {
background: #28a745;
}

.product-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--dark-color);
}

.price {
font-size: 42px;
font-weight: 700;
color: var(--primary-color);
margin: 20px 0;
line-height: 1;
}

.price span {
font-size: 16px;
font-weight: 400;
color: #666;
}

.product-card p {
font-size: 14px;
margin-bottom: 25px;
line-height: 1.7;
color: #555;
}

.product-features {
list-style: none;
margin: 15px 0;
text-align: left;
}

.product-features li {
padding: 6px 0;
font-size: 13px;
}

.product-features li:before {
content: "✓ ";
color: #28a745;
font-weight: 700;
}

.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 30px;
}

.step {
text-align: center;
padding: 20px;
}

.step-number {
width: 50px;
height: 50px;
background: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
font-weight: 700;
margin: 0 auto 15px;
}

.step h3 {
font-size: 16px;
margin-bottom: 10px;
}

.step p {
font-size: 13px;
margin: 0;
}

.service-areas {
background: #f8f9fa;
text-align: center;
}

.areas-showcase {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
margin: 40px 0;
}

.area-highlight {
background: white;
padding: 25px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s;
}

.area-highlight:hover {
transform: translateY(-3px);
}

.area-highlight h3 {
font-size: 18px;
color: var(--primary-color);
margin-bottom: 10px;
}

.area-highlight p {
font-size: 13px;
color: #666;
margin: 0;
}

.area-cta {
text-align: center;
margin-top: 30px;
}

.area-cta p {
font-size: 15px;
margin-bottom: 20px;
color: #555;
}

.benefits-list,
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 30px;
}

.benefit-item {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefit-icon {
font-size: 40px;
margin-bottom: 15px;
}

.benefit-item h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark-color);
}

.benefit-item p {
font-size: 14px;
margin: 0;
line-height: 1.7;
color: #555;
}

.testimonials {
background: #f8f9fa;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.testimonial {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rating {
color: #ffa500;
font-size: 18px;
margin-bottom: 12px;
}

.testimonial p {
font-size: 14px;
font-style: italic;
margin-bottom: 15px;
line-height: 1.7;
color: #555;
}

.author {
font-weight: 600;
color: var(--primary-color);
font-style: normal;
font-size: 13px;
}

.dispenser-info {
background: #f8f9fa;
}

.dispenser-content {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 50px;
align-items: center;
}

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

.dispenser-text h2 {
text-align: left;
font-size: 32px;
margin-bottom: 20px;
}

.dispenser-text > p {
margin-bottom: 25px;
line-height: 1.8;
color: #555;
}

.dispenser-features {
display: flex;
flex-direction: column;
gap: 20px;
margin: 30px 0;
}

.dispenser-feature {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.dispenser-feature h4 {
font-size: 16px;
color: var(--primary-color);
margin-bottom: 8px;
}

.dispenser-feature p {
font-size: 14px;
margin: 0;
color: #555;
line-height: 1.6;
}

.dispenser-note {
font-size: 13px;
color: #666;
font-style: italic;
margin: 0;
}

.guarantee {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
}

.guarantee .section-header h2,
.guarantee .section-label {
color: white;
}

.guarantee .section-label {
background: rgba(255,255,255,0.2);
}

.guarantee-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
margin-top: 40px;
}

.guarantee-item {
background: rgba(255,255,255,0.1);
padding: 30px;
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.2);
}

.guarantee-item h3 {
font-size: 18px;
margin-bottom: 12px;
color: white;
}

.guarantee-item p {
font-size: 14px;
margin: 0;
line-height: 1.7;
opacity: 0.95;
}

.faq-list {
max-width: 800px;
margin: 30px auto 0;
}

.faq-item {
background: white;
padding: 20px;
margin-bottom: 15px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item h3 {
font-size: 17px;
margin-bottom: 10px;
color: var(--dark-color);
font-weight: 600;
}

.faq-item p {
font-size: 14px;
margin: 0;
line-height: 1.7;
color: #555;
}

.areas-intro,
.pricing-intro,
.contact-intro {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.areas-intro h2,
.pricing-intro h2,
.contact-intro h2 {
margin-bottom: 20px;
}

.coverage-areas {
margin-top: 30px;
}

.areas-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.area-card {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.area-card h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--primary-color);
}

.area-card p {
font-size: 14px;
margin: 0;
}

.delivery-info {
background: #f8f9fa;
}

.info-grid,
.delivery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.info-item,
.delivery-option {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-item h3,
.delivery-option h3 {
font-size: 17px;
margin-bottom: 10px;
color: var(--primary-color);
}

.info-item p,
.delivery-option p {
font-size: 14px;
margin: 0;
}

.map-section {
background: #f8f9fa;
}

.map-container {
margin: 30px 0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.location-details {
text-align: center;
margin-top: 20px;
}

.location-details h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--primary-color);
}

.location-details p {
font-size: 14px;
margin: 5px 0;
}

.delivery-pricing {
background: #f8f9fa;
}

.pricing-benefits {
margin-top: 30px;
}

.comparison {
background: #f8f9fa;
}

.comparison p {
max-width: 800px;
margin: 0 auto 30px;
text-align: center;
}

.comparison-points {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 30px;
}

.point {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: center;
}

.point h3 {
font-size: 17px;
margin-bottom: 10px;
color: var(--primary-color);
}

.point p {
font-size: 14px;
margin: 0;
}

.contact-content {
margin-top: 40px;
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
font-size: 22px;
margin-bottom: 20px;
text-align: left;
}

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

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

.form-group label {
font-size: 14px;
font-weight: 600;
margin-bottom: 5px;
color: var(--dark-color);
}

.form-group input,
.form-group textarea {
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
font-family: inherit;
}

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

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 13px;
font-weight: 400;
cursor: pointer;
}

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

.checkbox-label a {
color: var(--primary-color);
}

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

.contact-item h3 {
font-size: 16px;
margin-bottom: 8px;
color: var(--primary-color);
}

.contact-item p {
font-size: 14px;
margin: 3px 0;
}

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

.contact-cta {
margin-top: 30px;
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
}

.contact-cta h3 {
font-size: 16px;
margin-bottom: 12px;
color: var(--primary-color);
}

.contact-cta ul {
list-style: none;
}

.contact-cta li {
padding: 5px 0;
font-size: 14px;
}

.contact-cta li:before {
content: "→ ";
color: var(--primary-color);
font-weight: 700;
}

.contact-benefits {
background: #f8f9fa;
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
padding: 20px;
}

.thankyou-content,
.error-content {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0,0,0,0.2);
text-align: center;
max-width: 600px;
}

.thankyou-icon {
width: 80px;
height: 80px;
background: #28a745;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
margin: 0 auto 20px;
}

.thankyou-title,
.error-content h2 {
font-size: 26px;
margin-bottom: 15px;
color: var(--dark-color);
}

.thankyou-message {
font-size: 16px;
margin-bottom: 10px;
color: var(--primary-color);
font-weight: 600;
}

.thankyou-content p,
.error-content p {
font-size: 14px;
margin-bottom: 20px;
}

.thankyou-actions,
.error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin: 25px 0;
}

.thankyou-info,
.error-links {
margin-top: 30px;
text-align: left;
}

.thankyou-info p,
.error-links p {
font-weight: 600;
margin-bottom: 10px;
}

.thankyou-info ul,
.error-links ul {
list-style: none;
}

.thankyou-info li,
.error-links li {
padding: 5px 0;
}

.thankyou-info a,
.error-links a {
color: var(--primary-color);
text-decoration: none;
}

.thankyou-info a:hover,
.error-links a:hover {
text-decoration: underline;
}

.error-code {
font-size: 80px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 10px;
}

.policy-page {
padding: 40px 0;
}

.policy-page h1 {
font-size: 32px;
margin-bottom: 10px;
color: var(--dark-color);
}

.update-date,
.current-date {
font-size: 13px;
color: #666;
margin-bottom: 30px;
display: block;
}

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

.policy-section h2 {
font-size: 22px;
margin-bottom: 15px;
color: var(--primary-color);
text-align: left;
}

.policy-section h3 {
font-size: 18px;
margin: 20px 0 10px;
color: var(--dark-color);
}

.policy-section p {
font-size: 14px;
line-height: 1.7;
margin-bottom: 12px;
}

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

.policy-section li {
font-size: 14px;
line-height: 1.7;
margin-bottom: 8px;
}

.footer {
background: var(--dark-color);
color: white;
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-section h4 {
font-size: 16px;
margin-bottom: 15px;
color: white;
}

.footer-section p {
font-size: 13px;
margin: 5px 0;
line-height: 1.6;
}

.footer-section a {
display: block;
color: #ccc;
text-decoration: none;
font-size: 13px;
margin: 8px 0;
transition: color 0.3s;
}

.footer-section a:hover {
color: white;
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-bottom p {
font-size: 13px;
margin: 0;
}

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

.footer-links a {
color: #ccc;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-links a:hover {
color: white;
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
background: var(--dark-color);
flex-direction: column;
padding: 20px;
transition: left 0.3s;
}

.nav.active {
left: 0;
}

.menu-toggle {
display: flex;
}

.hero {
min-height: auto;
}

.hero-content {
grid-template-columns: 1fr;
min-height: auto;
padding: 40px 0;
}

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

.hero p {
font-size: 15px;
}

.hero-stats {
gap: 25px;
}

.hero-image {
order: -1;
}

.page-hero h1 {
font-size: 24px;
}

section h2 {
font-size: 26px;
}

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

.about-content,
.dispenser-content {
grid-template-columns: 1fr;
}

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

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

.thankyou-content,
.error-content {
padding: 30px 20px;
}

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

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

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

.hero {
padding: 0;
}

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

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

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

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

.hero-stats {
flex-direction: column;
gap: 15px;
}

.stat-item strong {
font-size: 24px;
}

section {
padding: 30px 0;
}

section h2,
.section-header h2 {
font-size: 22px;
}

.btn,
.btn-primary,
.btn-outline {
padding: 10px 20px;
font-size: 14px;
width: 100%;
text-align: center;
}

.features-grid,
.products-grid,
.steps-grid,
.benefits-list,
.benefits-grid,
.testimonials-grid,
.areas-grid,
.areas-showcase,
.info-grid,
.delivery-grid,
.comparison-points,
.guarantee-grid {
grid-template-columns: 1fr;
}

.product-card,
.feature-item,
.benefit-item,
.testimonial,
.area-card,
.area-highlight,
.info-item,
.delivery-option,
.point,
.guarantee-item {
padding: 20px;
}

.price {
font-size: 36px;
}

.step-number {
width: 45px;
height: 45px;
font-size: 20px;
}

.policy-page h1 {
font-size: 26px;
}

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

.policy-section h3 {
font-size: 16px;
}

.dispenser-content {
gap: 30px;
}
}

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

.logo {
font-size: 15px;
}

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

.hero-stats {
align-items: flex-start;
}

.stat-item strong {
font-size: 20px;
}

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

.btn,
.btn-primary,
.btn-outline {
padding: 9px 18px;
font-size: 13px;
color: #0066cc;
}

.price {
font-size: 32px;
}

.feature-icon,
.benefit-icon {
font-size: 32px;
}
}
