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

:root {
--primary: #6366f1;
--secondary: #ec4899;
--accent: #8b5cf6;
--dark: #0f172a;
--gray: #64748b;
--light: #f1f5f9;
--white: #ffffff;
}

body {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--dark);
background: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.8rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 15px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

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

.privacy-actions {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-actions a {
color: var(--primary);
font-size: 14px;
text-decoration: underline;
}

.privacy-actions button {
background: var(--primary);
color: var(--white);
border: none;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: background 0.3s ease;
}

.privacy-actions button:hover {
background: var(--accent);
}

.header {
background: var(--white);
padding: 15px 0;
border-bottom: 1px solid var(--light);
position: relative;
}

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

.logo {
font-family: 'Syne', sans-serif;
font-size: 0.8rem;
font-weight: 800;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--dark);
transition: all 0.3s ease;
}

.nav {
display: flex;
gap: 30px;
align-items: center;
}

.nav a {
font-size: 15px;
font-weight: 500;
color: var(--dark);
position: relative;
padding: 5px 0;
}

.nav a:hover,
.nav a.active {
color: var(--primary);
}

.mega-hero {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}

.hero-shape {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.3;
animation: float 20s infinite ease-in-out;
}

.shape-1 {
width: 500px;
height: 500px;
background: var(--primary);
top: -100px;
right: -100px;
animation-delay: 0s;
}

.shape-2 {
width: 400px;
height: 400px;
background: var(--secondary);
bottom: -100px;
left: -100px;
animation-delay: 5s;
}

.shape-3 {
width: 350px;
height: 350px;
background: var(--accent);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation-delay: 10s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -30px) scale(1.1); }
66% { transform: translate(-30px, 30px) scale(0.9); }
}

.mega-hero-content {
position: relative;
z-index: 2;
text-align: center;
color: var(--white);
padding: 80px 0;
}

.hero-badge {
display: inline-block;
background: rgba(99, 102, 241, 0.2);
border: 1px solid rgba(99, 102, 241, 0.3);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
backdrop-filter: blur(10px);
}

.mega-hero-content h1 {
font-size: 4rem;
margin-bottom: 25px;
line-height: 1.1;
}

.gradient-text {
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.mega-hero-content > p {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 35px;
opacity: 0.9;
line-height: 1.7;
}

.hero-cta {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
display: inline-block;
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
cursor: pointer;
border: 2px solid transparent;
}

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

.btn-primary:hover {
background: var(--accent);
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
background: transparent;
color: var(--dark);
border-color: var(--dark);
}

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

.btn-outline {
background: transparent;
color: var(--white);
border-color: var(--white);
}

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

.btn-primary-large {
display: inline-block;
padding: 16px 40px;
background: var(--primary);
color: var(--white);
border-radius: 10px;
font-weight: 700;
font-size: 17px;
transition: all 0.3s ease;
}

.btn-primary-large:hover {
background: var(--accent);
transform: translateY(-2px);
box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

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

.stat-mini {
display: flex;
flex-direction: column;
align-items: center;
}

.stat-mini strong {
font-family: 'Syne', sans-serif;
font-size: 2rem;
font-weight: 800;
color: var(--primary);
}

.stat-mini span {
font-size: 13px;
opacity: 0.8;
}

section {
padding: 80px 0;
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
}

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

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

.section-header p {
color: var(--gray);
font-size: 16px;
}

.services-modern {
background: var(--light);
}

.services-grid-modern {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.service-modern {
background: var(--white);
padding: 35px;
border-radius: 12px;
transition: all 0.3s ease;
}

.service-modern:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-icon {
font-size: 3rem;
margin-bottom: 20px;
}

.service-modern h3 {
margin-bottom: 12px;
}

.service-modern p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

.showcase {
background: var(--white);
}

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

.showcase-content h2 {
margin-bottom: 20px;
}

.showcase-content p {
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
}

.feature-list {
list-style: none;
margin: 25px 0;
}

.feature-list li {
padding: 10px 0;
padding-left: 30px;
position: relative;
color: var(--dark);
}

.feature-list li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--primary);
font-weight: bold;
font-size: 18px;
}

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

.process-timeline {
background: var(--light);
}

.timeline {
max-width: 800px;
margin: 0 auto;
position: relative;
}

.timeline:before {
content: '';
position: absolute;
left: 30px;
top: 0;
bottom: 0;
width: 2px;
background: var(--primary);
}

.timeline-item {
display: flex;
gap: 30px;
margin-bottom: 40px;
position: relative;
}

.timeline-marker {
width: 60px;
height: 60px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Syne', sans-serif;
font-size: 1.5rem;
font-weight: 800;
flex-shrink: 0;
box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.timeline-content {
flex: 1;
background: var(--white);
padding: 25px;
border-radius: 10px;
}

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

.timeline-content p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

.team-intro {
background: var(--white);
}

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

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

.team-content h2 {
margin-bottom: 20px;
}

.team-content > p {
color: var(--gray);
margin-bottom: 30px;
line-height: 1.8;
}

.team-highlights {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}

.highlight-item {
padding: 20px;
background: var(--light);
border-radius: 8px;
border-left: 4px solid var(--primary);
}

.highlight-item h4 {
margin-bottom: 8px;
color: var(--dark);
}

.highlight-item p {
color: var(--gray);
font-size: 14px;
margin: 0;
}

.results {
background: var(--dark);
color: var(--white);
}

.results .section-label {
background: rgba(99, 102, 241, 0.2);
color: var(--primary);
}

.results .section-header h2,
.results .section-header p {
color: var(--white);
}

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

.result-card {
text-align: center;
padding: 35px;
background: rgba(255,255,255,0.05);
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.1);
}

.result-number {
font-family: 'Syne', sans-serif;
font-size: 3rem;
font-weight: 800;
color: var(--primary);
margin-bottom: 10px;
}

.result-label {
font-size: 16px;
font-weight: 600;
margin-bottom: 15px;
}

.result-card p {
font-size: 14px;
opacity: 0.8;
line-height: 1.6;
}

.testimonials {
background: var(--light);
}

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

.testimonial-card {
background: var(--white);
padding: 35px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card p {
color: var(--dark);
font-size: 15px;
line-height: 1.8;
margin-bottom: 25px;
font-style: italic;
}

.testimonial-author strong {
display: block;
color: var(--dark);
font-weight: 600;
margin-bottom: 5px;
}

.testimonial-author span {
color: var(--gray);
font-size: 13px;
}

.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: var(--white);
text-align: center;
}

.final-cta-content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.final-cta-content > p {
font-size: 1.1rem;
margin-bottom: 35px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
opacity: 0.95;
}

.cta-note {
margin-top: 20px;
font-size: 14px;
opacity: 0.8;
}

.footer {
background: var(--dark);
color: var(--white);
padding: 25px 0;
font-size: 13px;
}

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

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

.footer-links a {
color: var(--white);
opacity: 0.8;
font-size: 13px;
}

.footer-links a:hover {
opacity: 1;
color: var(--primary);
}

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

.page-hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
}

.page-hero p {
font-size: 1.15rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }

.menu-toggle {
display: flex;
}

.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
display: none;
z-index: 999;
}

.nav.active {
display: flex;
}

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

.mega-hero-content {
padding: 60px 0;
}

.mega-hero-content h1 {
font-size: 2.5rem;
}

.mega-hero-content > p {
font-size: 1rem;
}

.hero-stats {
gap: 25px;
}

.showcase-grid,
.team-grid {
grid-template-columns: 1fr;
gap: 40px;
}

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

.timeline:before {
left: 20px;
}

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

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

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

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

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }

.mega-hero-content h1 {
font-size: 2rem;
}

.mega-hero-content > p {
font-size: 0.95rem;
}

section {
padding: 50px 0;
}

.btn-primary,
.btn-secondary,
.btn-outline {
padding: 12px 25px;
font-size: 14px;
}

.hero-cta {
flex-direction: column;
align-items: center;
}

.hero-cta a {
width: 100%;
max-width: 280px;
text-align: center;
}

.service-modern {
padding: 25px;
}

.timeline-item {
gap: 20px;
}

.result-number {
font-size: 2.5rem;
}

.testimonial-card {
padding: 25px;
}

.final-cta-content h2 {
font-size: 2rem;
}
}

@media (max-width: 360px) {
.mega-hero-content h1 {
font-size: 1.7rem;
}

.stat-mini strong {
font-size: 1.5rem;
}
}

.strategy-overview,
.production-intro {
padding: 80px 0;
}

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

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

.overview-text p {
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
}

.overview-features {
display: flex;
flex-direction: column;
gap: 25px;
}

.feature-item {
display: flex;
gap: 20px;
align-items: start;
padding: 25px;
background: var(--light);
border-radius: 10px;
}

.feature-item .service-icon {
font-size: 2.5rem;
margin: 0;
}

.feature-item h3 {
margin-bottom: 8px;
font-size: 1.2rem;
}

.feature-item p {
color: var(--gray);
font-size: 14px;
margin: 0;
}

.strategy-services {
background: var(--light);
}

.services-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 25px;
}

.service-item {
background: var(--white);
padding: 30px;
border-radius: 10px;
border-left: 4px solid var(--primary);
transition: all 0.3s ease;
}

.service-item:hover {
transform: translateX(5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-item h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}

.service-item p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

.strategy-benefits {
background: var(--white);
}

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

.benefit-card {
text-align: center;
padding: 35px;
background: var(--light);
border-radius: 12px;
transition: all 0.3s ease;
}

.benefit-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.benefit-card .service-icon {
font-size: 3rem;
margin-bottom: 20px;
}

.benefit-card h3 {
margin-bottom: 15px;
}

.benefit-card p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

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

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

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

.intro-text p {
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
}

.production-capabilities {
background: var(--light);
}

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

.capability-card {
background: var(--white);
padding: 35px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

.capability-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.capability-card .service-icon {
font-size: 3rem;
margin-bottom: 20px;
}

.capability-card h3 {
margin-bottom: 15px;
}

.capability-card p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

.products {
background: var(--white);
}

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

.product-card {
background: var(--light);
border-radius: 12px;
padding: 40px;
position: relative;
transition: all 0.3s ease;
}

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

.featured-product {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: var(--white);
}

.product-badge {
position: absolute;
top: -12px;
right: 20px;
background: var(--secondary);
color: var(--white);
padding: 6px 18px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 25px;
border-bottom: 2px solid rgba(0,0,0,0.1);
}

.featured-product .product-header {
border-bottom-color: rgba(255,255,255,0.2);
}

.product-header h3 {
margin-bottom: 15px;
font-size: 1.6rem;
}

.product-price {
font-family: 'Syne', sans-serif;
font-size: 2.8rem;
font-weight: 800;
color: var(--primary);
}

.featured-product .product-price {
color: var(--white);
}

.product-features {
margin-bottom: 30px;
}

.product-features p {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
font-size: 14px;
line-height: 1.6;
}

.product-features p:before {
content: "✓";
color: var(--primary);
font-weight: bold;
font-size: 18px;
}

.featured-product .product-features p:before {
color: var(--white);
}

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

.contact-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: var(--white);
padding: 70px 0;
text-align: center;
}

.contact-hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
}

.contact-hero p {
font-size: 1.15rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

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

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

.contact-info h2 {
margin-bottom: 20px;
}

.contact-info > p {
color: var(--gray);
margin-bottom: 35px;
line-height: 1.8;
}

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

.contact-item {
display: flex;
gap: 20px;
align-items: start;
padding: 25px;
background: var(--light);
border-radius: 10px;
}

.contact-item .service-icon {
font-size: 2rem;
margin: 0;
}

.contact-item h3 {
margin-bottom: 8px;
font-size: 1.1rem;
}

.contact-item p {
color: var(--gray);
font-size: 14px;
margin-bottom: 3px;
line-height: 1.6;
}

.contact-form-wrapper {
background: var(--light);
padding: 45px;
border-radius: 12px;
}

.contact-form h2 {
margin-bottom: 30px;
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
font-size: 14px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px;
border: 1px solid #cbd5e1;
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
transition: all 0.3s ease;
background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
resize: vertical;
min-height: 130px;
}

.checkbox-group {
margin-top: 25px;
}

.checkbox-label {
display: flex;
align-items: start;
gap: 12px;
cursor: pointer;
font-size: 13px;
line-height: 1.6;
}

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

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

.contact-form button {
width: 100%;
margin-top: 15px;
}

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

.map-section h2 {
text-align: center;
margin-bottom: 35px;
}

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

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

.thankyou-content,
.error-content {
text-align: center;
max-width: 650px;
}

.thankyou-icon {
font-size: 5rem;
margin-bottom: 30px;
}

.thankyou-content h1,
.error-content h1 {
margin-bottom: 25px;
font-size: 2.5rem;
}

.thankyou-content p,
.error-content p {
color: var(--gray);
margin-bottom: 35px;
font-size: 1.1rem;
line-height: 1.8;
}

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

.error-number {
font-family: 'Syne', sans-serif;
font-size: 10rem;
font-weight: 800;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
opacity: 0.3;
margin-bottom: 25px;
line-height: 1;
}

.policy-hero {
background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
color: var(--white);
padding: 60px 0;
text-align: center;
}

.policy-hero h1 {
font-size: 2.5rem;
margin-bottom: 12px;
}

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

.policy-content {
padding: 80px 0;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
margin-top: 45px;
margin-bottom: 20px;
color: var(--dark);
}

.policy-text h3 {
margin-top: 30px;
margin-bottom: 15px;
color: var(--dark);
font-size: 1.3rem;
}

.policy-text p {
color: var(--gray);
margin-bottom: 18px;
line-height: 1.9;
}

@media (max-width: 768px) {
.overview-grid,
.intro-content,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.services-list,
.benefits-grid,
.capabilities-grid {
grid-template-columns: 1fr;
}

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

.contact-form-wrapper {
padding: 35px 25px;
}
}

@media (max-width: 480px) {
.contact-form-wrapper {
padding: 30px 20px;
}

.product-card {
padding: 30px 20px;
}

.product-price {
font-size: 2.3rem;
}

.error-number {
font-size: 6rem;
}

.thankyou-icon {
font-size: 4rem;
}

.page-hero,
.contact-hero {
padding: 50px 0;
}

.page-hero h1,
.contact-hero h1 {
font-size: 2.2rem;
}
}

@media (max-width: 360px) {
.thankyou-content h1,
.error-content h1 {
font-size: 2rem;
}
}
