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

:root {
--primary: #6366f1;
--secondary: #ec4899;
--accent: #14b8a6;
--dark: #0f172a;
--gray: #64748b;
--light: #f8fafc;
--white: #ffffff;
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

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

.container-fluid {
width: 100%;
padding: 0;
}

.header {
background: var(--white);
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: relative;
z-index: 1000;
}

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

.logo {
font-family: 'Syne', sans-serif;
font-size: 1.3rem;
font-weight: 800;
color: var(--primary);
text-decoration: none;
transition: color 0.3s;
}

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

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

.nav-link {
color: var(--dark);
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
transition: color 0.3s;
position: relative;
}

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

.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background: var(--primary);
}

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 15px;
z-index: 9999;
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: 0.85rem;
}

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

.btn-accept,
.btn-learn {
padding: 8px 20px;
border-radius: 5px;
font-size: 0.85rem;
cursor: pointer;
transition: 0.3s;
text-decoration: none;
display: inline-block;
}

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

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

.btn-learn {
background: transparent;
color: var(--white);
border: 1px solid var(--white);
}

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

.mega-hero {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
padding: 80px 0 100px;
position: relative;
overflow: hidden;
}

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

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

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

.shape-2 {
width: 300px;
height: 300px;
background: var(--secondary);
bottom: -100px;
left: -50px;
}

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

.mega-hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
}

.hero-badge {
display: inline-block;
background: rgba(99, 102, 241, 0.2);
color: var(--primary);
padding: 8px 20px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 20px;
border: 1px solid var(--primary);
}

.mega-hero-content h1 {
color: var(--white);
margin-bottom: 20px;
font-size: 3.5rem;
}

.mega-hero-content p {
color: rgba(255,255,255,0.8);
font-size: 1.2rem;
margin-bottom: 30px;
line-height: 1.7;
}

.hero-cta-group {
display: flex;
gap: 15px;
margin-bottom: 40px;
}

.btn-hero-primary,
.btn-hero-secondary {
padding: 15px 35px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: 0.3s;
display: inline-block;
}

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

.btn-hero-primary:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(99,102,241,0.4);
}

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

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

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.hero-stat {
display: flex;
flex-direction: column;
}

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

.stat-label {
font-size: 0.85rem;
color: rgba(255,255,255,0.6);
}

.mega-hero-visual {
position: relative;
}

.mega-hero-visual img {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

section {
padding: 80px 0;
}

.section-header-modern {
text-align: center;
margin-bottom: 50px;
}

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

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

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

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

.service-modern {
background: var(--white);
padding: 35px;
border-radius: 15px;
transition: 0.3s;
border: 2px solid transparent;
}

.service-modern:hover {
border-color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon-wrapper {
margin-bottom: 20px;
}

.service-number {
font-size: 3rem;
font-weight: 800;
color: var(--primary);
font-family: 'Syne', sans-serif;
opacity: 0.2;
line-height: 1;
}

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

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

.service-link {
color: var(--primary);
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
}

.service-link:hover {
color: var(--secondary);
}

.about-visual {
background: var(--white);
}

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

.about-visual-image img {
width: 100%;
height: auto;
border-radius: 15px;
}

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

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

.about-features {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
margin-top: 30px;
}

.about-feature {
background: var(--light);
padding: 20px;
border-radius: 10px;
}

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

.about-feature p {
font-size: 0.85rem;
color: var(--gray);
margin: 0;
}

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

.timeline {
max-width: 900px;
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-size: 1.5rem;
font-weight: 800;
font-family: 'Syne', sans-serif;
flex-shrink: 0;
box-shadow: 0 5px 20px rgba(99,102,241,0.3);
}

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

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

.timeline-content p {
color: var(--gray);
font-size: 0.95rem;
margin: 0;
}

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

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

.testimonial-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

.testimonial-card p {
color: var(--dark);
font-size: 0.95rem;
line-height: 1.7;
margin-bottom: 20px;
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: 0.85rem;
}

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

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

.package-modern {
background: var(--white);
border-radius: 15px;
padding: 35px;
position: relative;
transition: 0.3s;
border: 2px solid transparent;
}

.package-modern:hover {
border-color: var(--primary);
transform: translateY(-5px);
}

.featured-package {
border-color: var(--primary);
box-shadow: 0 15px 50px rgba(99,102,241,0.2);
}

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

.package-top {
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 2px solid var(--light);
}

.package-top h3 {
margin-bottom: 10px;
}

.package-top p {
color: var(--gray);
font-size: 0.9rem;
}

.package-price {
margin-bottom: 30px;
}

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

.price-period {
font-size: 1rem;
color: var(--gray);
}

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

.package-list li {
padding: 12px 0;
font-size: 0.9rem;
color: var(--dark);
border-bottom: 1px solid var(--light);
}

.package-list li:last-child {
border-bottom: none;
}

.btn-package {
display: block;
width: 100%;
padding: 14px;
background: var(--primary);
color: var(--white);
text-align: center;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: 0.3s;
}

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

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

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

.result-item {
text-align: center;
padding: 30px;
background: var(--light);
border-radius: 12px;
}

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

.result-label {
color: var(--gray);
font-size: 0.95rem;
}

.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 80px 0;
text-align: center;
}

.final-cta-content {
max-width: 700px;
margin: 0 auto;
}

.final-cta-content h2 {
color: var(--white);
margin-bottom: 20px;
font-size: 2.5rem;
}

.final-cta-content p {
color: rgba(255,255,255,0.9);
font-size: 1.1rem;
margin-bottom: 30px;
}

.btn-cta-large {
display: inline-block;
padding: 18px 45px;
background: var(--white);
color: var(--primary);
text-decoration: none;
border-radius: 10px;
font-weight: 700;
font-size: 1.05rem;
transition: 0.3s;
}

.btn-cta-large:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-note {
margin-top: 20px;
font-size: 0.85rem;
color: rgba(255,255,255,0.7);
}

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

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

.footer-col h4 {
margin-bottom: 15px;
font-size: 1rem;
}

.footer-col p,
.footer-col a {
color: rgba(255,255,255,0.7);
font-size: 0.85rem;
line-height: 1.8;
text-decoration: none;
display: block;
}

.footer-col a:hover {
color: var(--white);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-bottom p {
font-size: 0.85rem;
color: rgba(255,255,255,0.7);
}

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

.footer-links a {
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 0.85rem;
}

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

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

.page-hero h1 {
margin-bottom: 15px;
}

.page-hero p {
font-size: 1.15rem;
}

.service-details {
padding: 80px 0;
}

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

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

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

.features-list {
margin-top: 30px;
}

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

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

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

.details-image img {
width: 100%;
height: auto;
border-radius: 15px;
}

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

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

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

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

.check-list {
list-style: none;
margin-top: 25px;
}

.check-list li {
padding: 12px 0;
font-size: 0.95rem;
color: var(--dark);
}

.content-image img {
width: 100%;
height: auto;
border-radius: 15px;
}

.benefits {
padding: 80px 0;
}

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

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

.benefit-card:hover {
border-color: var(--primary);
transform: translateY(-5px);
}

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

.benefit-card p {
color: var(--gray);
font-size: 0.95rem;
}

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

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

.contact-hero-content p {
font-size: 1.15rem;
max-width: 600px;
margin: 0 auto;
}

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

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

.info-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
margin-bottom: 25px;
}

.info-card h3 {
margin-bottom: 15px;
font-size: 1.2rem;
}

.info-card p {
color: var(--gray);
font-size: 0.95rem;
margin: 8px 0;
}

.info-note {
font-size: 0.8rem !important;
font-style: italic;
}

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

.contact-form {
background: var(--light);
padding: 35px;
border-radius: 15px;
}

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

.form-group label {
display: block;
margin-bottom: 10px;
font-weight: 600;
font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px;
border: 2px solid #e2e8f0;
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 0.95rem;
transition: 0.3s;
}

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

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

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 0.9rem;
cursor: pointer;
}

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

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

.contact-form .btn-primary {
width: 100%;
padding: 16px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: 0.3s;
}

.contact-form .btn-primary:hover {
background: var(--secondary);
}

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

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

.thankyou-content,
.error-content {
max-width: 600px;
}

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

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

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

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 14px 32px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: 0.3s;
}

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

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

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

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

.error-number {
font-size: 8rem;
font-weight: 800;
color: var(--primary);
font-family: 'Syne', sans-serif;
line-height: 1;
margin-bottom: 25px;
opacity: 0.2;
}

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

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

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

.update-date {
color: var(--gray);
font-size: 0.85rem;
margin-bottom: 40px;
}

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

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

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

.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 15px rgba(0,0,0,0.1);
display: none;
}

.nav.active {
display: flex;
}

.nav-link.active::after {
display: none;
}

section {
padding: 50px 0;
}

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

.mega-hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}

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

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

.hero-cta-group {
flex-direction: column;
}

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

.hero-stats {
grid-template-columns: 1fr;
gap: 20px;
}

.services-grid-modern,
.about-visual-grid,
.details-grid,
.content-grid-reverse,
.contact-grid,
.packages-grid-modern,
.benefits-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.about-features {
grid-template-columns: 1fr;
}

.timeline::before {
left: 20px;
}

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

.timeline-item {
gap: 20px;
}

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
h1 { font-size: 1.7rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
body { font-size: 13px; }

.container {
padding: 0 15px;
}

.logo {
font-size: 1.1rem;
}

.mega-hero {
padding: 40px 0 50px;
}

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

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

.btn-hero-primary,
.btn-hero-secondary {
padding: 12px 25px;
font-size: 0.9rem;
}

.stat-value {
font-size: 1.6rem;
}

.service-modern,
.package-modern,
.benefit-card,
.info-card {
padding: 25px;
}

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

.timeline-marker {
width: 35px;
height: 35px;
font-size: 1rem;
}

.timeline::before {
left: 17px;
}

.timeline-content {
padding: 20px;
}

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

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

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

.btn-cta-large {
padding: 14px 30px;
font-size: 0.95rem;
}

.contact-form {
padding: 25px;
}

.form-group input,
.form-group textarea {
padding: 12px;
}
}

@media (max-width: 320px) {
body { font-size: 12px; }
h1 { font-size: 1.5rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }

.logo {
font-size: 0.8rem;
}

.container {
padding: 0 12px;
}

.mega-hero {
padding: 30px 0 40px;
}

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

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

.hero-badge {
font-size: 0.75rem;
padding: 6px 15px;
}

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

.stat-value {
font-size: 1.4rem;
}

.stat-label {
font-size: 0.75rem;
}

section {
padding: 40px 0;
}

.section-tag {
font-size: 0.75rem;
padding: 5px 15px;
}

.service-modern,
.package-modern,
.benefit-card,
.info-card,
.about-feature {
padding: 20px;
}

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

.timeline-marker {
width: 30px;
height: 30px;
font-size: 0.9rem;
}

.timeline::before {
left: 15px;
}

.timeline-content {
padding: 15px;
}

.testimonial-card {
padding: 20px;
}

.price-amount {
font-size: 2.5rem;
}

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

.final-cta {
padding: 50px 0;
}

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

.btn-cta-large {
padding: 12px 25px;
font-size: 0.9rem;
}

.contact-form {
padding: 20px;
}

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

.form-group input,
.form-group textarea {
padding: 10px;
font-size: 0.9rem;
}

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

.footer {
padding: 30px 0 15px;
}

.footer-content {
gap: 25px;
}
}
