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

:root {
--primary-color: #1a4d7a;
--secondary-color: #2e7db5;
--accent-color: #ff6b35;
--highlight-color: #ffc857;
--text-dark: #2c3e50;
--text-light: #7f8c8d;
--bg-light: #f8f9fa;
--white: #ffffff;
--success: #27ae60;
--error: #e74c3c;
}

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

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

header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 12px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
position: relative;
}

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

.logo {
font-size: 20px;
font-weight: bold;
color: var(--white);
letter-spacing: 0.5px;
}

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

nav a {
color: var(--white);
text-decoration: none;
font-size: 14px;
padding: 6px 12px;
border-radius: 4px;
transition: background 0.3s;
}

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

.hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
color: var(--white);
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
opacity: 0.3;
}

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

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

.hero p {
font-size: 18px;
margin-bottom: 25px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-stats {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 35px;
flex-wrap: wrap;
}

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

.stat-number {
font-size: 36px;
font-weight: bold;
color: var(--highlight-color);
display: block;
}

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

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

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

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

section {
padding: 40px 0;
}

h2 {
font-size: 24px;
margin-bottom: 20px;
color: var(--primary-color);
}

h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--text-dark);
}

p {
margin-bottom: 12px;
line-height: 1.6;
}

.btn {
display: inline-block;
background: var(--accent-color);
color: var(--white);
padding: 12px 32px;
text-decoration: none;
border-radius: 25px;
font-size: 14px;
font-weight: 600;
transition: all 0.3s;
border: none;
cursor: pointer;
box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

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

.btn-secondary {
display: inline-block;
background: var(--primary-color);
color: var(--white);
padding: 8px 18px;
text-decoration: none;
border-radius: 4px;
font-size: 13px;
transition: background 0.3s;
}

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

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

.features-grid,
.categories-grid,
.products-grid,
.testimonials-grid,
.ideas-grid,
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 20px;
}

.feature-item,
.category-card,
.product-card,
.testimonial,
.idea-card,
.benefit-item {
background: var(--white);
padding: 20px;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover,
.category-card:hover,
.product-card:hover,
.idea-card:hover,
.benefit-item:hover {
transform: translateY(-5px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.category-card img,
.product-card img {
width: 100%;
height: auto;
border-radius: 4px;
margin-bottom: 12px;
}

.price {
font-size: 20px;
font-weight: bold;
color: var(--accent-color);
margin: 10px 0;
}

.benefits-list {
list-style: none;
padding-left: 0;
}

.benefits-list li {
padding: 8px 0 8px 24px;
position: relative;
}

.benefits-list li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--success);
font-weight: bold;
}

.testimonial {
font-style: italic;
background: var(--bg-light);
border-left: 4px solid var(--accent-color);
}

.testimonial span {
display: block;
margin-top: 10px;
font-style: normal;
font-weight: bold;
color: var(--primary-color);
}

.action-section {
background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
color: var(--text-dark);
text-align: center;
padding: 50px 0;
position: relative;
}

.action-section h2 {
color: var(--text-dark);
font-size: 28px;
margin-bottom: 15px;
}

.action-section p {
font-size: 16px;
margin-bottom: 25px;
}

.action-section .btn {
background: var(--primary-color);
}

.action-section .btn:hover {
background: var(--secondary-color);
}

.map-container iframe {
width: 100%;
border-radius: 6px;
margin-top: 15px;
}

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

.contact-info,
.contact-form-wrapper {
background: var(--white);
padding: 25px;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

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

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

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

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

.form-group textarea {
resize: vertical;
}

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

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

.checkbox-group label {
margin-bottom: 0;
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: 20px;
}

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

.privacy-buttons {
display: flex;
gap: 12px;
align-items: center;
}

.privacy-buttons a {
color: var(--accent-color);
font-size: 13px;
}

.privacy-buttons button {
background: var(--accent-color);
color: var(--white);
border: none;
padding: 8px 18px;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
}

footer {
background: var(--text-dark);
color: var(--white);
padding: 35px 0 15px;
}

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

.footer-section h3 {
color: var(--white);
margin-bottom: 12px;
font-size: 16px;
}

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

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

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

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

.footer-section a:hover {
opacity: 1;
}

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

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

.policy-content {
background: var(--white);
padding: 40px 0;
}

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

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

.policy-content h3 {
font-size: 16px;
margin-top: 15px;
margin-bottom: 10px;
}

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

.policy-content li {
margin-bottom: 6px;
}

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

.thankyou-container,
.error-container {
text-align: center;
color: var(--white);
padding: 30px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 36px;
margin-bottom: 15px;
}

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

.error-content h2 {
font-size: 28px;
color: var(--white);
margin-bottom: 12px;
}

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

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

.step {
background: var(--bg-light);
padding: 20px;
border-radius: 6px;
border-left: 4px solid var(--accent-color);
transition: border-color 0.3s;
}

.step:hover {
border-left-color: var(--highlight-color);
}

.methodology,
.commitment {
background: var(--bg-light);
}

@media (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 12px;
}

nav ul {
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}

.hero {
padding: 50px 0;
}

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

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

.hero-stats {
gap: 25px;
}

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

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

h2 {
font-size: 20px;
}

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

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

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

.logo {
font-size: 18px;
}

nav a {
font-size: 13px;
padding: 5px 10px;
}

.hero {
padding: 35px 0;
}

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

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

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

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

section {
padding: 30px 0;
}

h2 {
font-size: 18px;
}

h3 {
font-size: 16px;
}

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

.features-grid,
.categories-grid,
.products-grid,
.ideas-grid {
grid-template-columns: 1fr;
}
}

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

.logo {
font-size: 15px;
}

nav ul {
gap: 6px;
}

nav a {
font-size: 11px;
padding: 4px 8px;
}

.hero {
padding: 30px 0;
}

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

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

.hero-stats {
gap: 15px;
}

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

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

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

h2 {
font-size: 16px;
}

h3 {
font-size: 14px;
}

.action-section h2 {
font-size: 18px;
}
}