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

:root {
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #ec4899;
--dark: #1e293b;
--light: #f8fafc;
--gray: #64748b;
--white: #ffffff;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

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

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

.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: 18px 20px;
z-index: 9999;
display: none;
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

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

.privacy-content a {
color: var(--primary);
text-decoration: underline;
}

#acceptPrivacy {
background: var(--primary);
color: var(--white);
border: none;
padding: 10px 24px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
white-space: nowrap;
}

#acceptPrivacy:hover {
background: var(--secondary);
}

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

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

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--primary);
}

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

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

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

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

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

.mega-hero {
position: relative;
min-height: 90vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 100px 0 80px;
}

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

.hero-shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 600px;
height: 600px;
background: var(--white);
top: -200px;
right: -100px;
}

.shape-2 {
width: 400px;
height: 400px;
background: var(--accent);
bottom: -150px;
left: -100px;
}

.shape-3 {
width: 300px;
height: 300px;
background: var(--white);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.mega-hero-content {
position: relative;
z-index: 2;
max-width: 900px;
margin: 0 auto;
text-align: center;
color: var(--white);
}

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

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

.mega-hero-content > p {
font-size: 1.2rem;
margin-bottom: 40px;
opacity: 0.95;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

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

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

.stat-number {
font-size: 2.5rem;
font-weight: 700;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 5px;
}

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

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

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

.btn-mega:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-mega-outline {
display: inline-block;
background: transparent;
color: var(--white);
padding: 16px 35px;
border-radius: 10px;
font-weight: 600;
font-size: 16px;
border: 2px solid var(--white);
transition: all 0.3s ease;
}

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

.trust-section {
padding: 30px 0;
background: var(--light);
border-bottom: 1px solid #e2e8f0;
}

.trust-text {
text-align: center;
color: var(--gray);
font-size: 14px;
}

.services-modern {
padding: 100px 0;
background: var(--white);
}

.section-intro {
max-width: 700px;
margin-bottom: 60px;
}

.section-intro.center {
text-align: center;
margin-left: auto;
margin-right: auto;
}

.section-label {
display: inline-block;
color: var(--primary);
font-weight: 600;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 15px;
}

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

.section-intro p {
color: var(--gray);
font-size: 1.05rem;
}

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

.service-modern {
background: var(--light);
padding: 40px;
border-radius: 16px;
position: relative;
transition: all 0.3s ease;
}

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

.service-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 20px;
}

.service-modern h3 {
margin-bottom: 15px;
color: var(--dark);
}

.service-modern p {
color: var(--gray);
margin-bottom: 20px;
line-height: 1.7;
}

.service-arrow {
display: inline-block;
width: 40px;
height: 40px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
text-align: center;
line-height: 40px;
font-size: 20px;
transition: all 0.3s ease;
}

.service-arrow:hover {
background: var(--secondary);
transform: translateX(5px);
}

.showcase-section {
padding: 100px 0;
background: var(--light);
}

.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: 35px;
font-size: 1.05rem;
}

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

.showcase-feature {
display: flex;
gap: 20px;
}

.feature-check {
width: 50px;
height: 50px;
background: var(--primary);
color: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
flex-shrink: 0;
}

.showcase-feature h4 {
margin-bottom: 8px;
}

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

.showcase-image img {
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.process-modern {
padding: 100px 0;
background: var(--white);
}

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

.process-card {
text-align: center;
padding: 35px 25px;
}

.process-icon {
margin-bottom: 25px;
}

.icon-circle {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: 700;
margin: 0 auto;
font-family: 'Space Grotesk', sans-serif;
}

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

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

.testimonials-section {
padding: 100px 0;
background: var(--light);
}

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

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

.testimonial-stars {
color: #fbbf24;
font-size: 20px;
margin-bottom: 20px;
}

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

.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}

.author-info strong {
display: block;
color: var(--dark);
font-size: 15px;
margin-bottom: 3px;
}

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

.why-choose {
padding: 100px 0;
background: var(--white);
}

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

.why-image img {
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.why-content > p {
color: var(--gray);
margin-bottom: 35px;
font-size: 1.05rem;
}

.why-list {
display: flex;
flex-direction: column;
gap: 30px;
}

.why-item {
display: flex;
gap: 20px;
}

.why-number {
width: 50px;
height: 50px;
background: var(--light);
color: var(--primary);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 700;
flex-shrink: 0;
font-family: 'Space Grotesk', sans-serif;
}

.why-item h4 {
margin-bottom: 8px;
}

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

.cta-modern {
padding: 80px 0;
background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-content-modern {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}

.cta-text {
flex: 1;
min-width: 300px;
}

.cta-text h2 {
color: var(--white);
margin-bottom: 15px;
}

.cta-text p {
color: var(--white);
opacity: 0.95;
font-size: 1.05rem;
}

.cta-action {
text-align: center;
}

.btn-cta {
display: inline-block;
background: var(--white);
color: var(--primary);
padding: 18px 40px;
border-radius: 10px;
font-weight: 600;
font-size: 17px;
margin-bottom: 12px;
transition: all 0.3s ease;
}

.btn-cta:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-note {
color: var(--white);
font-size: 13px;
opacity: 0.9;
}

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

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

.footer-info p {
font-size: 13px;
opacity: 0.8;
}

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

.footer-links a {
font-size: 13px;
opacity: 0.8;
}

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

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

.hero-stats {
gap: 30px;
}

.showcase-grid,
.why-grid {
grid-template-columns: 1fr;
gap: 50px;
}

.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
display: none;
}

.nav.active {
display: flex;
}

.menu-toggle {
display: flex;
}

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

.cta-content-modern {
text-align: center;
}

.cta-text {
text-align: center;
}
}

@media (max-width: 640px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

.mega-hero {
min-height: auto;
padding: 70px 0 60px;
}

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

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

.stat-number {
font-size: 2rem;
}

.hero-actions {
flex-direction: column;
width: 100%;
}

.btn-mega,
.btn-mega-outline {
width: 100%;
text-align: center;
}

.services-modern,
.showcase-section,
.process-modern,
.testimonials-section,
.why-choose {
padding: 60px 0;
}

.section-intro {
margin-bottom: 40px;
}

.service-modern {
padding: 30px;
}

.showcase-feature,
.why-item {
flex-direction: column;
text-align: center;
}

.feature-check,
.why-number {
margin: 0 auto;
}

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

.footer-links {
justify-content: center;
}
}

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

.container {
padding: 0 15px;
}

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

.hero-stats {
gap: 20px;
}

.stat-number {
font-size: 1.8rem;
}

.btn-mega,
.btn-mega-outline,
.btn-cta {
padding: 14px 28px;
font-size: 15px;
}

.service-modern,
.testimonial-card {
padding: 25px;
}
}

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

h1 { font-size: 1.5rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }

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

.stat-number {
font-size: 1.5rem;
}

.icon-circle {
width: 60px;
height: 60px;
font-size: 1.5rem;
}

.feature-check,
.why-number {
width: 45px;
height: 45px;
}
}

.page-hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.page-hero::before {
content: '';
position: absolute;
width: 400px;
height: 400px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
top: -150px;
right: -100px;
}

.page-hero h1 {
margin-bottom: 15px;
position: relative;
z-index: 2;
}

.page-hero p {
font-size: 1.15rem;
opacity: 0.95;
position: relative;
z-index: 2;
}

.content-section {
padding: 100px 0;
}

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

.content-grid.reverse {
direction: rtl;
}

.content-grid.reverse > * {
direction: ltr;
}

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

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

.content-image img {
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.packages {
padding: 100px 0;
background: var(--light);
}

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

.package-card {
background: var(--white);
border-radius: 16px;
padding: 40px;
position: relative;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.package-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.package-card.featured {
border-color: var(--primary);
}

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

.package-header {
text-align: center;
margin-bottom: 35px;
padding-bottom: 30px;
border-bottom: 2px solid var(--light);
}

.package-header h3 {
margin-bottom: 20px;
font-size: 1.5rem;
}

.package-price {
font-size: 3rem;
font-weight: 700;
color: var(--primary);
font-family: 'Space Grotesk', sans-serif;
}

.package-features {
list-style: none;
margin-bottom: 35px;
}

.package-features li {
padding: 14px 0;
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 14px;
color: var(--gray);
}

.benefits {
padding: 100px 0;
}

.benefits h2 {
text-align: center;
margin-bottom: 60px;
}

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

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

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

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

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

.features-detailed {
padding: 100px 0;
background: var(--light);
}

.features-detailed h2 {
text-align: center;
margin-bottom: 60px;
}

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

.feature-detailed {
background: var(--white);
padding: 40px;
border-radius: 16px;
text-align: center;
transition: all 0.3s ease;
}

.feature-detailed:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-detailed h3 {
margin-bottom: 15px;
}

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

.process-steps {
padding: 100px 0;
}

.process-steps h2 {
text-align: center;
margin-bottom: 60px;
}

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

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

.step-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

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

.pricing-simple {
padding: 100px 0;
background: var(--light);
}

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

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

.pricing-content > p {
color: var(--gray);
margin-bottom: 50px;
font-size: 1.05rem;
}

.pricing-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
margin-bottom: 50px;
text-align: left;
}

.pricing-col h4 {
margin-bottom: 25px;
}

.pricing-col ul {
list-style: none;
}

.pricing-col li {
padding: 12px 0;
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
color: var(--gray);
}

.contact-hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 80px 0;
position: relative;
overflow: hidden;
}

.contact-hero::before {
content: '';
position: absolute;
width: 500px;
height: 500px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
top: -200px;
left: -150px;
}

.contact-hero-content {
max-width: 700px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 2;
}

.contact-hero h1 {
margin-bottom: 18px;
}

.contact-hero p {
font-size: 1.1rem;
opacity: 0.95;
}

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

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

.contact-info-cards {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-card {
background: var(--light);
padding: 30px;
border-radius: 16px;
transition: all 0.3s ease;
}

.contact-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-card h3 {
margin-bottom: 12px;
font-size: 1.15rem;
}

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

.contact-form-wrapper {
background: var(--white);
padding: 45px;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

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

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

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

.form-group input,
.form-group textarea {
padding: 14px 18px;
border: 2px solid #e2e8f0;
border-radius: 10px;
font-family: inherit;
font-size: 14px;
transition: all 0.3s ease;
}

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

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

.checkbox-label {
display: flex;
gap: 12px;
font-size: 13px;
cursor: pointer;
color: var(--gray);
}

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

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

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

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

.btn-primary:hover {
background: var(--secondary);
transform: translateY(-2px);
}

.btn-outline {
background: transparent;
color: var(--primary);
border: 2px solid var(--primary);
}

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

.map-section {
margin-top: 100px;
}

.map-wrapper iframe {
width: 100%;
display: block;
border-radius: 16px;
}

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

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

.thankyou-content h1 {
margin-bottom: 25px;
color: var(--primary);
}

.thankyou-content p {
color: var(--gray);
margin-bottom: 18px;
line-height: 1.7;
}

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

.error-code {
font-size: 8rem;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 25px;
font-family: 'Space Grotesk', sans-serif;
}

.error-content h1 {
margin-bottom: 25px;
}

.error-content p {
color: var(--gray);
margin-bottom: 35px;
line-height: 1.7;
}

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

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

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

.policy-content h1 {
margin-bottom: 12px;
}

.policy-date {
color: var(--gray);
font-size: 14px;
margin-bottom: 50px;
}

.policy-content h2 {
margin-top: 50px;
margin-bottom: 20px;
font-size: 1.6rem;
}

.policy-content h3 {
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.3rem;
}

.policy-content h4 {
margin-top: 25px;
margin-bottom: 12px;
}

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

.policy-content ul {
margin: 20px 0 20px 30px;
color: var(--gray);
}

.policy-content li {
margin-bottom: 10px;
line-height: 1.7;
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
}

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

.cookie-table th {
background: var(--light);
font-weight: 600;
}

@media (max-width: 968px) {
.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
display: none;
z-index: 999;
}

.nav.active {
display: flex;
}

.menu-toggle {
display: flex;
}

.content-grid,
.contact-layout {
grid-template-columns: 1fr;
gap: 50px;
}

.packages-grid,
.benefits-grid,
.features-detailed-grid,
.steps-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 640px) {
.page-hero {
padding: 60px 0;
}

.content-section,
.packages,
.benefits,
.features-detailed,
.process-steps,
.pricing-simple,
.contact-main,
.thankyou-section,
.error-section {
padding: 60px 0;
}

.package-card,
.benefit-card,
.feature-detailed,
.step-card {
padding: 30px;
}

.contact-form-wrapper {
padding: 30px;
}

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

.btn {
width: 100%;
text-align: center;
}

.error-code {
font-size: 5rem;
}

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

@media (max-width: 480px) {
.package-card,
.benefit-card,
.feature-detailed,
.step-card,
.contact-card {
padding: 25px;
}

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

@media (max-width: 320px) {
.package-price {
font-size: 2.5rem;
}

.error-code {
font-size: 4rem;
}
}
