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

:root {
--primary-color: #1a1a2e;
--secondary-color: #16213e;
--accent-color: #0f3460;
--highlight-color: #e94560;
--text-color: #333;
--light-bg: #f8f9fa;
--white: #ffffff;
--border-color: #ddd;
--shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.5;
color: var(--text-color);
font-size: 14px;
}

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

header {
background: var(--white);
box-shadow: var(--shadow);
position: relative;
z-index: 100;
}

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

.logo {
font-size: 18px;
font-weight: bold;
color: var(--primary-color);
}

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

.main-nav a {
text-decoration: none;
color: var(--text-color);
font-size: 13px;
transition: color 0.3s;
}

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

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 22px;
cursor: pointer;
color: var(--primary-color);
}

.hero {
position: relative;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
color: var(--white);
padding: 100px 15px;
text-align: center;
overflow: hidden;
min-height: 500px;
display: flex;
align-items: center;
justify-content: center;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(233,69,96,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
background-size: cover;
opacity: 0.3;
z-index: 0;
}

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

.hero h1 {
font-size: 48px;
margin-bottom: 20px;
font-weight: 700;
line-height: 1.2;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
font-size: 20px;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}

.cta-button {
display: inline-block;
background: var(--highlight-color);
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 50px;
font-size: 16px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(233,69,96,0.3);
}

.cta-button:hover {
background: #d63651;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(233,69,96,0.4);
}

.features {
padding: 40px 15px;
background: var(--light-bg);
}

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

.feature-item {
background: var(--white);
padding: 20px;
border-radius: 6px;
box-shadow: var(--shadow);
}

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

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

.about-preview {
padding: 40px 15px;
}

.about-content h2 {
font-size: 24px;
margin-bottom: 15px;
color: var(--primary-color);
}

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

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

.link-button:hover {
color: var(--highlight-color);
}

.products-showcase {
padding: 40px 15px;
background: var(--light-bg);
}

.products-showcase h2 {
text-align: center;
font-size: 26px;
margin-bottom: 25px;
color: var(--primary-color);
}

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

.product-card {
background: var(--white);
border-radius: 6px;
overflow: hidden;
box-shadow: var(--shadow);
transition: transform 0.3s;
}

.product-card:hover {
transform: translateY(-4px);
}

.product-card img {
width: 100%;
height: auto;
display: block;
}

.product-card h3 {
padding: 12px 15px 6px;
font-size: 16px;
color: var(--primary-color);
}

.product-card .price {
padding: 0 15px;
font-size: 18px;
font-weight: bold;
color: var(--highlight-color);
margin: 6px 0;
}

.product-card .product-description {
padding: 0 15px;
font-size: 13px;
line-height: 1.6;
margin: 8px 0;
}

.product-button {
display: block;
margin: 12px 15px 15px;
padding: 10px 20px;
background: var(--primary-color);
color: var(--white);
text-align: center;
text-decoration: none;
border-radius: 25px;
font-size: 13px;
font-weight: 600;
transition: all 0.3s ease;
}

.product-button:hover {
background: var(--accent-color);
transform: scale(1.05);
}

.testimonials {
padding: 40px 15px;
}

.testimonials h2 {
text-align: center;
font-size: 26px;
margin-bottom: 25px;
color: var(--primary-color);
}

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

.testimonial-item {
background: var(--white);
padding: 20px;
border-radius: 6px;
box-shadow: var(--shadow);
border-left: 4px solid var(--highlight-color);
}

.testimonial-item p {
font-size: 13px;
font-style: italic;
margin-bottom: 10px;
line-height: 1.6;
}

.testimonial-author {
font-size: 12px;
color: var(--primary-color);
font-weight: bold;
}

.why-choose {
padding: 40px 15px;
background: var(--light-bg);
}

.why-choose h2 {
text-align: center;
font-size: 26px;
margin-bottom: 25px;
color: var(--primary-color);
}

.reasons-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}

.reason-item {
background: var(--white);
padding: 18px;
border-radius: 6px;
box-shadow: var(--shadow);
text-align: center;
}

.reason-item h4 {
font-size: 15px;
margin-bottom: 8px;
color: var(--highlight-color);
}

.reason-item p {
font-size: 13px;
line-height: 1.6;
}

.stats-section {
padding: 60px 15px;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: var(--white);
text-align: center;
}

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

.stat-item {
padding: 20px;
}

.stat-number {
font-size: 42px;
font-weight: 700;
color: var(--highlight-color);
margin-bottom: 8px;
}

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

.newsletter {
padding: 50px 15px;
background: var(--secondary-color);
color: var(--white);
text-align: center;
}

.newsletter h2 {
font-size: 26px;
margin-bottom: 10px;
}

.newsletter p {
font-size: 14px;
margin-bottom: 20px;
}

.location-info {
padding: 40px 15px;
}

.location-info h2 {
text-align: center;
font-size: 26px;
margin-bottom: 10px;
color: var(--primary-color);
}

.location-info > p {
text-align: center;
font-size: 14px;
margin-bottom: 20px;
}

.contact-details {
max-width: 600px;
margin: 0 auto;
background: var(--light-bg);
padding: 20px;
border-radius: 6px;
}

.contact-details p {
font-size: 13px;
margin-bottom: 8px;
}

footer {
background: var(--primary-color);
color: var(--white);
padding: 30px 15px 15px;
}

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

.footer-section h4 {
font-size: 15px;
margin-bottom: 12px;
}

.footer-section p {
font-size: 12px;
line-height: 1.6;
}

.footer-section a {
display: block;
color: var(--white);
text-decoration: none;
font-size: 12px;
margin-bottom: 6px;
transition: color 0.3s;
}

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

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

.footer-bottom p {
font-size: 12px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.95);
color: var(--white);
padding: 15px;
z-index: 1000;
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 {
font-size: 12px;
flex: 1;
min-width: 200px;
}

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

.privacy-buttons a {
color: var(--white);
text-decoration: underline;
font-size: 12px;
}

.privacy-buttons button {
background: var(--highlight-color);
color: var(--white);
border: none;
padding: 8px 16px;
border-radius: 20px;
cursor: pointer;
font-size: 12px;
transition: all 0.3s ease;
}

.privacy-buttons button:hover {
background: #d63651;
transform: scale(1.05);
}

.page-hero {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
color: var(--white);
padding: 60px 15px;
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at top right, rgba(233,69,96,0.2), transparent);
z-index: 0;
}

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

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

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

.story-content {
padding: 40px 15px;
}

.story-block {
margin-bottom: 30px;
}

.story-block h2 {
font-size: 22px;
margin-bottom: 12px;
color: var(--primary-color);
}

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

.values {
padding: 40px 15px;
background: var(--light-bg);
}

.values h2 {
text-align: center;
font-size: 26px;
margin-bottom: 25px;
color: var(--primary-color);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}

.value-item {
background: var(--white);
padding: 20px;
border-radius: 6px;
box-shadow: var(--shadow);
}

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

.value-item p {
font-size: 13px;
line-height: 1.6;
}

.cta-section {
padding: 60px 15px;
background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
color: var(--white);
text-align: center;
position: relative;
overflow: hidden;
}

.cta-section::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(233,69,96,0.1) 0%, transparent 70%);
animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}

.cta-section h2 {
font-size: 26px;
margin-bottom: 10px;
}

.cta-section p {
font-size: 14px;
margin-bottom: 20px;
}

.products-section {
padding: 40px 15px;
}

.products-section h2 {
text-align: center;
font-size: 26px;
margin-bottom: 25px;
color: var(--primary-color);
}

.color-options {
display: flex;
gap: 8px;
padding: 0 15px 10px;
}

.color-dot {
width: 24px;
height: 24px;
border-radius: 50%;
cursor: pointer;
transition: transform 0.2s;
}

.color-dot:hover {
transform: scale(1.2);
}

.product-info {
padding: 40px 15px;
background: var(--light-bg);
}

.product-info h2 {
text-align: center;
font-size: 26px;
margin-bottom: 25px;
color: var(--primary-color);
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
}

.info-item {
background: var(--white);
padding: 20px;
border-radius: 6px;
box-shadow: var(--shadow);
}

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

.info-item p {
font-size: 13px;
line-height: 1.6;
}

.contact-section {
padding: 40px 15px;
}

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

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

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

.contact-item h3 {
font-size: 15px;
margin-bottom: 6px;
color: var(--highlight-color);
}

.contact-item p {
font-size: 13px;
line-height: 1.6;
}

.contact-form-wrapper h2 {
font-size: 22px;
margin-bottom: 10px;
color: var(--primary-color);
}

.contact-form-wrapper > p {
font-size: 13px;
margin-bottom: 20px;
line-height: 1.6;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 13px;
font-family: inherit;
}

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

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 8px;
cursor: pointer;
}

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

.checkbox-group span {
font-size: 12px;
line-height: 1.5;
}

.checkbox-group a {
color: var(--highlight-color);
}

.submit-button {
background: var(--highlight-color);
color: var(--white);
border: none;
padding: 12px 32px;
border-radius: 25px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-button:hover {
background: #d63651;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(233,69,96,0.3);
}

.map-section {
padding: 40px 15px;
background: var(--light-bg);
}

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

.map-container {
max-width: 900px;
margin: 0 auto;
border-radius: 6px;
overflow: hidden;
box-shadow: var(--shadow);
}

.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: var(--white);
padding: 40px 30px;
border-radius: 8px;
text-align: center;
max-width: 500px;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.thankyou-icon {
font-size: 60px;
color: var(--highlight-color);
margin-bottom: 20px;
}

.thankyou-content h1 {
font-size: 24px;
margin-bottom: 15px;
color: var(--primary-color);
}

.thankyou-content p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 12px;
}

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

.error-code {
font-size: 80px;
font-weight: bold;
color: var(--highlight-color);
margin-bottom: 15px;
}

.error-content h2 {
font-size: 24px;
margin-bottom: 15px;
color: var(--primary-color);
}

.error-content p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 12px;
}

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

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

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

.update-date {
font-size: 12px;
color: #666;
margin-bottom: 25px;
}

.policy-content h2 {
font-size: 20px;
margin-top: 25px;
margin-bottom: 12px;
color: var(--primary-color);
}

.policy-content h3 {
font-size: 16px;
margin-top: 18px;
margin-bottom: 10px;
color: var(--secondary-color);
}

.policy-content h4 {
font-size: 14px;
margin-top: 15px;
margin-bottom: 8px;
color: var(--text-color);
}

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

.policy-content ul,
.policy-content ol {
margin-left: 25px;
margin-bottom: 15px;
}

.policy-content li {
font-size: 13px;
line-height: 1.7;
margin-bottom: 6px;
}

@media (max-width: 768px) {
.main-nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 15px;
box-shadow: var(--shadow);
}

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

.menu-toggle {
display: block;
}

.hero {
padding: 70px 15px;
min-height: 400px;
}

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

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

.products-showcase h2,
.testimonials h2,
.why-choose h2,
.values h2,
.product-info h2,
.cta-section h2,
.location-info h2,
.map-section h2 {
font-size: 22px;
}

.about-content h2,
.story-block h2,
.contact-info h2,
.contact-form-wrapper h2 {
font-size: 20px;
}

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

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

.thankyou-content h1,
.error-content h2 {
font-size: 20px;
}

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

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

@media (max-width: 480px) {
.logo {
font-size: 16px;
}

.hero {
padding: 50px 15px;
min-height: 350px;
}

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

.feature-grid,
.product-grid,
.testimonial-grid,
.reasons-grid,
.values-grid,
.info-grid {
grid-template-columns: 1fr;
}

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

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

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

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

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

.logo {
font-size: 14px;
}

.hero {
padding: 40px 10px;
min-height: 320px;
}

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

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

.cta-button,
.product-button,
.submit-button {
padding: 10px 20px;
font-size: 13px;
}

.products-showcase h2,
.testimonials h2,
.why-choose h2,
.values h2,
.product-info h2,
.cta-section h2,
.location-info h2,
.map-section h2 {
font-size: 20px;
}

.container {
padding: 0 10px;
}
}

@media (max-width: 320px) {
.hero h1 {
font-size: 22px;
}

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

.feature-grid,
.product-grid,
.testimonial-grid,
.reasons-grid,
.values-grid,
.info-grid,
.stats-grid {
grid-template-columns: 1fr;
gap: 15px;
}

.cta-button {
padding: 10px 20px;
font-size: 14px;
}

.product-card img {
height: auto;
}
}
