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

:root {
--primary-green: #2d5016;
--accent-green: #7fb539;
--dark-bg: #1a1a1a;
--light-bg: #f8f9fa;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
font-size: 14px;
}

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

header {
background: var(--primary-green);
padding: 12px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
position: relative;
z-index: 999;
}

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

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

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

.main-nav a {
color: white;
text-decoration: none;
font-size: 13px;
padding: 6px 12px;
border-radius: 4px;
transition: all 0.3s;
}

.main-nav a:hover {
background: rgba(255,255,255,0.2);
}

.nav-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 22px;
cursor: pointer;
}

.hero-modern {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-green) 0%, #1a3009 100%);
overflow: hidden;
}

.hero-modern::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.15;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(127,181,57,0.2) 0%, transparent 50%);
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
padding: 40px 20px;
}

.hero-badge {
display: inline-block;
background: var(--accent-green);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: bold;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}

.hero-modern h1 {
font-size: 48px;
color: white;
margin-bottom: 20px;
line-height: 1.2;
font-weight: 700;
}

.hero-modern p {
font-size: 18px;
color: rgba(255,255,255,0.9);
margin-bottom: 30px;
}

.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.hero-btn {
padding: 12px 30px;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
font-size: 14px;
transition: all 0.3s;
display: inline-block;
}

.hero-btn.primary {
background: var(--accent-green);
color: white;
}

.hero-btn.primary:hover {
background: #6fa030;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(127,181,57,0.3);
}

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

.hero-btn.secondary:hover {
background: white;
color: var(--primary-green);
}

.hero-features {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 40px;
z-index: 2;
}

.feature-item {
text-align: center;
color: white;
}

.feature-number {
display: block;
font-size: 28px;
font-weight: bold;
color: var(--accent-green);
}

.feature-text {
display: block;
font-size: 12px;
opacity: 0.9;
}

section {
padding: 60px 0;
}

h2 {
font-size: 32px;
margin-bottom: 16px;
color: var(--primary-green);
font-weight: 700;
}

h3 {
font-size: 20px;
margin-bottom: 10px;
color: var(--primary-green);
font-weight: 600;
}

.section-intro {
font-size: 16px;
color: #666;
max-width: 700px;
margin: 0 auto 40px;
text-align: center;
}

.intro-section {
background: white;
}

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

.intro-text h2 {
margin-bottom: 20px;
}

.intro-text p {
margin-bottom: 16px;
line-height: 1.8;
}

.intro-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-link {
display: inline-block;
color: var(--accent-green);
text-decoration: none;
font-weight: bold;
margin-top: 10px;
font-size: 14px;
transition: all 0.3s;
}

.btn-link:hover {
color: var(--primary-green);
transform: translateX(5px);
}

.seasonal-cycle {
background: var(--light-bg);
}

.cycle-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-top: 40px;
}

.cycle-card {
background: white;
padding: 24px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s;
}

.cycle-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.cycle-card h3 {
margin-bottom: 12px;
}

.cycle-card p {
margin-bottom: 15px;
font-size: 13px;
line-height: 1.6;
}

.cycle-card ul {
list-style: none;
}

.cycle-card li {
padding: 5px 0;
font-size: 13px;
padding-left: 20px;
position: relative;
}

.cycle-card li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--accent-green);
font-weight: bold;
}

.services-showcase {
background: white;
}

.showcase-grid {
display: grid;
gap: 30px;
margin-top: 40px;
}

.showcase-card {
display: grid;
grid-template-columns: 400px 1fr;
gap: 30px;
background: var(--light-bg);
border-radius: 8px;
overflow: hidden;
align-items: center;
}

.showcase-card:nth-child(even) {
grid-template-columns: 1fr 400px;
}

.showcase-card:nth-child(even) .showcase-image {
order: 2;
}

.showcase-image img {
width: 100%;
height: 300px;
object-fit: cover;
}

.showcase-content {
padding: 30px;
}

.showcase-content h3 {
margin-bottom: 15px;
}

.showcase-content p {
margin-bottom: 15px;
line-height: 1.7;
}

.why-us {
background: var(--light-bg);
}

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

.why-card {
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-number {
font-size: 40px;
font-weight: bold;
color: var(--accent-green);
opacity: 0.3;
line-height: 1;
margin-bottom: 15px;
}

.why-card h3 {
margin-bottom: 12px;
}

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

.process-section {
background: white;
}

.process-timeline {
max-width: 800px;
margin: 40px auto 0;
}

.timeline-item {
display: grid;
grid-template-columns: 60px 1fr;
gap: 25px;
margin-bottom: 40px;
}

.timeline-marker {
width: 60px;
height: 60px;
background: var(--accent-green);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: bold;
flex-shrink: 0;
}

.timeline-content h3 {
margin-bottom: 10px;
}

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

.testimonials-modern {
background: var(--dark-bg);
color: white;
}

.testimonials-modern h2 {
color: white;
text-align: center;
}

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

.testimonial-card {
background: rgba(255,255,255,0.05);
padding: 30px;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.1);
}

.quote-mark {
font-size: 60px;
color: var(--accent-green);
line-height: 1;
margin-bottom: 15px;
}

.testimonial-card p {
font-size: 14px;
line-height: 1.7;
margin-bottom: 20px;
color: rgba(255,255,255,0.9);
}

.testimonial-author strong {
display: block;
color: white;
margin-bottom: 5px;
}

.testimonial-author span {
font-size: 12px;
color: rgba(255,255,255,0.6);
}

.guarantee-section {
background: var(--primary-green);
color: white;
}

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

.guarantee-content h2 {
color: white;
margin-bottom: 20px;
}

.guarantee-content p {
font-size: 16px;
margin-bottom: 30px;
}

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

.guarantee-item {
display: flex;
align-items: center;
gap: 10px;
justify-content: center;
}

.check-icon {
font-size: 20px;
color: var(--accent-green);
}

.contact-cta {
background: var(--light-bg);
}

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

.cta-content h2 {
margin-bottom: 15px;
}

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

.cta-actions {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}

.cta-btn {
display: inline-block;
background: var(--accent-green);
color: white;
padding: 14px 40px;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
font-size: 16px;
transition: all 0.3s;
}

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

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

.phone-number {
font-size: 24px;
font-weight: bold;
color: var(--primary-green);
}

.page-hero {
background: var(--primary-green);
color: white;
padding: 50px 0;
text-align: center;
}

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

.content-section {
background: white;
}

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

.cleaning-card {
background: var(--light-bg);
padding: 25px;
border-radius: 8px;
}

.cleaning-card ul {
list-style: none;
margin-top: 15px;
}

.cleaning-card li {
padding: 6px 0;
padding-left: 20px;
position: relative;
font-size: 13px;
}

.cleaning-card li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--accent-green);
font-weight: bold;
}

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

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

.product-card {
background: white;
padding: 30px;
border-radius: 8px;
text-align: center;
border: 2px solid transparent;
transition: all 0.3s;
}

.product-card:hover {
border-color: var(--accent-green);
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-card.featured {
border-color: var(--accent-green);
position: relative;
}

.product-card.featured::before {
content: 'POPULÆR';
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--accent-green);
color: white;
padding: 4px 12px;
border-radius: 12px;
font-size: 11px;
font-weight: bold;
}

.price {
font-size: 36px;
font-weight: bold;
color: var(--accent-green);
margin: 15px 0;
}

.product-card ul {
list-style: none;
margin: 20px 0;
text-align: left;
}

.product-card li {
padding: 8px 0;
font-size: 13px;
}

.services-detailed {
background: white;
}

.service-detail {
margin-bottom: 25px;
padding: 20px;
background: var(--light-bg);
border-radius: 8px;
border-left: 4px solid var(--accent-green);
}

.service-benefits {
background: var(--light-bg);
}

.benefits-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
margin-top: 30px;
}

.benefit {
background: white;
padding: 20px;
border-radius: 8px;
}

.contact-section {
background: white;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 30px;
}

.contact-details {
margin-top: 25px;
}

.contact-item {
margin-bottom: 25px;
}

.contact-form {
background: var(--light-bg);
padding: 30px;
border-radius: 8px;
}

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

label {
display: block;
margin-bottom: 6px;
font-weight: 600;
font-size: 13px;
}

input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
font-family: inherit;
transition: border 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
outline: none;
border-color: var(--accent-green);
}

textarea {
resize: vertical;
min-height: 120px;
}

.checkbox-group label {
font-weight: normal;
display: flex;
align-items: center;
gap: 8px;
}

.checkbox-group input[type="checkbox"] {
width: auto;
}

.submit-btn {
background: var(--accent-green);
color: white;
padding: 12px 30px;
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
}

.submit-btn:hover {
background: var(--primary-green);
}

.map-section {
background: var(--light-bg);
}

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

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

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
background: white;
padding: 50px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thankyou-icon {
font-size: 70px;
color: var(--accent-green);
margin-bottom: 25px;
}

.error-content h1 {
font-size: 100px;
color: var(--primary-green);
margin-bottom: 20px;
}

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

.btn-primary {
display: inline-block;
background: var(--accent-green);
color: white;
padding: 12px 30px;
text-decoration: none;
border-radius: 6px;
font-size: 14px;
font-weight: bold;
transition: all 0.3s;
}

.btn-primary:hover {
background: var(--primary-green);
}

.btn-secondary {
display: inline-block;
background: var(--primary-green);
color: white;
padding: 12px 30px;
text-decoration: none;
border-radius: 6px;
font-size: 14px;
font-weight: bold;
transition: all 0.3s;
}

.btn-secondary:hover {
background: var(--dark-bg);
}

.thankyou-info {
margin-top: 30px;
padding: 20px;
background: var(--light-bg);
border-radius: 8px;
}

.policy-page {
background: white;
padding: 60px 0;
}

.policy-page .container {
max-width: 900px;
}

.policy-page h1 {
color: var(--primary-green);
font-size: 32px;
margin-bottom: 20px;
line-height: 1.3;
}

.policy-page h2 {
color: var(--primary-green);
font-size: 24px;
margin-top: 40px;
margin-bottom: 16px;
padding-bottom: 10px;
border-bottom: 2px solid var(--light-bg);
}

.policy-page h3 {
color: var(--primary-green);
font-size: 18px;
margin-top: 30px;
margin-bottom: 12px;
}

.policy-page p {
margin-bottom: 16px;
line-height: 1.8;
color: #444;
}

.policy-page ul {
margin-left: 30px;
margin-bottom: 20px;
}

.policy-page li {
margin-bottom: 10px;
line-height: 1.7;
color: #444;
}

.policy-page strong {
color: var(--primary-green);
font-weight: 600;
}

.update-date {
color: #666;
font-size: 14px;
margin-bottom: 30px;
font-style: italic;
display: block;
padding: 10px 0;
border-bottom: 1px solid #e0e0e0;
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
font-size: 13px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
overflow: hidden;
border-radius: 8px;
}

.cookie-table th,
.cookie-table td {
border: 1px solid #e0e0e0;
padding: 14px;
text-align: left;
}

.cookie-table th {
background: var(--primary-green);
color: white;
font-weight: 600;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.5px;
}

.cookie-table tr:nth-child(even) {
background: var(--light-bg);
}

.cookie-table tr:hover {
background: #f0f0f0;
}

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

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

.footer-section h3 {
color: var(--accent-green);
margin-bottom: 15px;
font-size: 16px;
}

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

.footer-section ul {
list-style: none;
}

.footer-section li {
margin-bottom: 8px;
}

.footer-section a {
color: white;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-section a:hover {
color: var(--accent-green);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
text-align: center;
font-size: 12px;
}

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

.footer-links a {
color: white;
text-decoration: none;
font-size: 12px;
transition: color 0.3s;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark-bg);
color: white;
padding: 20px;
z-index: 1000;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
display: none;
}

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

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

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

.popup-buttons {
display: flex;
gap: 12px;
flex-shrink: 0;
}

.popup-buttons a,
.popup-buttons button {
padding: 10px 20px;
border-radius: 6px;
font-size: 13px;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.3s;
white-space: nowrap;
}

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

.popup-buttons a:hover {
background: white;
color: var(--dark-bg);
}

.popup-buttons button {
background: var(--accent-green);
color: white;
}

.popup-buttons button:hover {
background: var(--primary-green);
}

@media (max-width: 1024px) {
.hero-modern h1 {
font-size: 36px;
}

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

.showcase-card:nth-child(even) {
grid-template-columns: 1fr;
}

.showcase-card:nth-child(even) .showcase-image {
order: 1;
}

.showcase-image img {
height: 250px;
}

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

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

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

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

.main-nav ul {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-green);
padding: 12px;
gap: 0;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.main-nav ul.active {
display: flex;
}

.main-nav li {
width: 100%;
}

.main-nav a {
display: block;
padding: 10px;
}

.hero-modern {
min-height: 70vh;
}

.hero-modern h1 {
font-size: 28px;
}

.hero-modern p {
font-size: 16px;
}

.hero-features {
position: static;
transform: none;
margin-top: 30px;
gap: 20px;
}

h2 {
font-size: 26px;
}

section {
padding: 40px 0;
}

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

.intro-image {
order: -1;
}

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

.showcase-content {
padding: 20px;
}

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

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

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

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

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

.popup-buttons {
width: 100%;
justify-content: center;
}

.cleaning-grid,
.products-grid,
.benefits-list {
grid-template-columns: 1fr;
}

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

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

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

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

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

.policy-page h2 {
font-size: 20px;
margin-top: 30px;
}

.policy-page h3 {
font-size: 16px;
margin-top: 20px;
}

.cookie-table {
font-size: 12px;
}

.cookie-table th,
.cookie-table td {
padding: 10px;
}
}

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

.container {
padding: 0 12px;
}

.logo {
font-size: 16px;
}

.hero-modern {
min-height: 60vh;
}

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

.hero-badge {
font-size: 11px;
padding: 5px 12px;
}

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

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

.hero-btn {
padding: 10px 20px;
font-size: 13px;
}

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

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

h2 {
font-size: 22px;
}

h3 {
font-size: 18px;
}

section {
padding: 30px 0;
}

.cycle-card,
.why-card,
.showcase-content,
.service-detail,
.benefit {
padding: 18px;
}

.contact-form {
padding: 20px;
}

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

.thankyou-icon {
font-size: 50px;
}

.error-content h1 {
font-size: 70px;
}

.guarantee-features {
grid-template-columns: 1fr;
gap: 15px;
}

.cta-btn {
padding: 12px 25px;
font-size: 14px;
}

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

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

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

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

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

.policy-page h2 {
font-size: 18px;
margin-top: 25px;
}

.policy-page h3 {
font-size: 15px;
margin-top: 18px;
}

.policy-page ul {
margin-left: 20px;
}

.update-date {
font-size: 12px;
}

.cookie-table {
font-size: 11px;
}

.cookie-table th,
.cookie-table td {
padding: 8px;
}

.timeline-item {
grid-template-columns: 50px 1fr;
gap: 15px;
}

.timeline-marker {
width: 50px;
height: 50px;
font-size: 20px;
}

.popup-buttons {
flex-direction: column;
width: 100%;
}

.popup-buttons a,
.popup-buttons button {
width: 100%;
padding: 10px;
}
}

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

.hero-modern h1 {
font-size: 20px;
}

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

.hero-btn {
padding: 9px 18px;
font-size: 12px;
}

h2 {
font-size: 20px;
}

h3 {
font-size: 16px;
}

.cycle-card,
.why-card,
.showcase-content,
.service-detail,
.benefit,
.contact-form {
padding: 15px;
}

.product-card {
padding: 20px;
}

.price {
font-size: 28px;
}

.thankyou-content,
.error-content {
padding: 25px 15px;
}

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

.policy-page h2 {
font-size: 17px;
}

.policy-page h3 {
font-size: 14px;
}

.cookie-table {
font-size: 10px;
}

.cookie-table th,
.cookie-table td {
padding: 6px;
}

.footer-section {
padding: 0 5px;
}
}

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

.container {
padding: 0 8px;
}

.logo {
font-size: 14px;
}

.hero-content {
padding: 20px 10px;
}

.hero-badge {
font-size: 10px;
padding: 4px 10px;
}

.hero-modern h1 {
font-size: 18px;
margin-bottom: 15px;
}

.hero-modern p {
font-size: 12px;
margin-bottom: 20px;
}

.hero-btn {
padding: 8px 16px;
font-size: 11px;
}

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

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

h2 {
font-size: 18px;
margin-bottom: 12px;
}

h3 {
font-size: 15px;
margin-bottom: 8px;
}

section {
padding: 25px 0;
}

.cycle-card,
.why-card,
.showcase-content,
.service-detail,
.benefit {
padding: 12px;
}

.contact-form {
padding: 15px;
}

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

input[type="text"],
input[type="email"],
textarea {
padding: 10px;
font-size: 12px;
}

.submit-btn {
padding: 10px 20px;
font-size: 12px;
}

.product-card {
padding: 15px;
}

.price {
font-size: 24px;
}

.product-card li {
font-size: 11px;
padding: 6px 0;
}

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

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

.error-content h1 {
font-size: 50px;
}

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

.page-hero {
padding: 25px 0;
}

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

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

.policy-page h1 {
font-size: 18px;
margin-bottom: 15px;
}

.policy-page h2 {
font-size: 16px;
margin-top: 20px;
margin-bottom: 12px;
}

.policy-page h3 {
font-size: 14px;
margin-top: 15px;
margin-bottom: 8px;
}

.policy-page p {
margin-bottom: 12px;
font-size: 12px;
}

.policy-page ul {
margin-left: 15px;
margin-bottom: 15px;
}

.policy-page li {
margin-bottom: 8px;
font-size: 12px;
}

.update-date {
font-size: 11px;
padding: 8px 0;
}

.cookie-table {
font-size: 9px;
}

.cookie-table th,
.cookie-table td {
padding: 5px;
}

.timeline-item {
grid-template-columns: 40px 1fr;
gap: 12px;
margin-bottom: 25px;
}

.timeline-marker {
width: 40px;
height: 40px;
font-size: 16px;
}

.timeline-content p {
font-size: 12px;
}

.quote-mark {
font-size: 40px;
}

.testimonial-card {
padding: 20px;
}

.testimonial-card p {
font-size: 12px;
}

.cta-btn {
padding: 10px 20px;
font-size: 12px;
}

.phone-number {
font-size: 18px;
}

.footer-section h3 {
font-size: 14px;
}

.footer-section p,
.footer-section a {
font-size: 11px;
}

.footer-bottom {
font-size: 10px;
}

.footer-links a {
font-size: 10px;
}

.popup-content p {
font-size: 11px;
}

.popup-buttons a,
.popup-buttons button {
font-size: 11px;
padding: 8px;
}
}
