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

:root {
--primary-color: #1a1a1a;
--secondary-color: #c9a961;
--accent-color: #6b5d52;
--highlight-color: #e8dcc8;
--text-color: #2d2d2d;
--light-bg: #faf9f7;
--white: #ffffff;
--border-color: #e5e0d8;
--transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 0.8rem;
}

h1 {
font-size: 2.2rem;
}

h2 {
font-size: 1.8rem;
}

h3 {
font-size: 1.4rem;
}

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

a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary-color);
color: var(--white);
padding: 15px 20px;
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;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

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

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

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

.privacy-buttons button {
background: var(--secondary-color);
color: var(--primary-color);
border: none;
padding: 8px 20px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
border-radius: 3px;
transition: var(--transition);
}

.privacy-buttons button:hover {
background: var(--white);
}

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

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

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 600;
color: var(--primary-color);
}

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

.menu-toggle span {
width: 25px;
height: 2px;
background: var(--primary-color);
margin: 3px 0;
transition: var(--transition);
}

.nav {
display: flex;
gap: 25px;
}

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

.nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 1px;
background: var(--secondary-color);
transition: var(--transition);
}

.nav a:hover::after {
width: 100%;
}

.hero-mega {
position: relative;
min-height: 85vh;
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
color: var(--white);
display: flex;
align-items: center;
overflow: hidden;
}

.hero-overlay {
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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
opacity: 0.5;
}

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

.shape {
position: absolute;
border-radius: 50%;
background: var(--secondary-color);
opacity: 0.08;
}

.shape-1 {
width: 400px;
height: 400px;
top: -200px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
bottom: -150px;
left: -80px;
}

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

.hero-mega-content {
position: relative;
z-index: 2;
max-width: 700px;
padding: 60px 0;
}

.hero-badge {
background: var(--secondary-color);
color: var(--primary-color);
padding: 6px 18px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
display: inline-block;
margin-bottom: 20px;
}

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

.hero-mega-content p {
font-size: 1.15rem;
line-height: 1.7;
margin-bottom: 30px;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 15px;
margin-bottom: 50px;
flex-wrap: wrap;
}

.btn-outline {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
padding: 12px 30px;
font-size: 14px;
font-weight: 500;
border-radius: 3px;
transition: var(--transition);
display: inline-block;
}

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

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

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

.stat-number {
font-size: 2rem;
font-weight: 600;
color: var(--secondary-color);
font-family: 'Cormorant Garamond', serif;
line-height: 1;
margin-bottom: 5px;
}

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

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 30px;
font-size: 14px;
font-weight: 500;
border-radius: 3px;
transition: var(--transition);
border: 2px solid transparent;
}

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

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

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

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

.philosophy {
padding: 80px 0;
background: var(--white);
}

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

.philosophy-image {
position: relative;
}

.philosophy-image img {
width: 100%;
border-radius: 8px;
}

.image-badge {
position: absolute;
bottom: 20px;
left: 20px;
background: var(--white);
color: var(--primary-color);
padding: 10px 20px;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.section-label {
color: var(--secondary-color);
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
}

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

.philosophy-text p {
margin-bottom: 15px;
line-height: 1.8;
color: var(--text-color);
}

.philosophy-text .btn-secondary {
margin-top: 10px;
}

.services-modern {
padding: 80px 0;
background: var(--light-bg);
}

.section-header {
max-width: 700px;
margin-bottom: 50px;
}

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

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

.section-header p {
font-size: 1.05rem;
line-height: 1.7;
color: var(--text-color);
}

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

.service-modern {
background: var(--white);
padding: 35px 25px;
border-radius: 6px;
transition: var(--transition);
border: 1px solid var(--border-color);
}

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

.service-icon {
font-size: 2rem;
font-weight: 600;
color: var(--secondary-color);
font-family: 'Cormorant Garamond', serif;
margin-bottom: 15px;
}

.service-modern h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

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

.service-link {
color: var(--secondary-color);
font-size: 14px;
font-weight: 500;
transition: var(--transition);
}

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

.transformation {
padding: 80px 0;
background: var(--white);
}

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

.transformation-features {
margin-top: 30px;
display: flex;
flex-direction: column;
gap: 20px;
}

.feature-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.feature-check {
width: 30px;
height: 30px;
background: var(--highlight-color);
color: var(--secondary-color);
border-radius: 50%;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 16px;
}

.feature-item h4 {
font-size: 1.05rem;
margin-bottom: 5px;
}

.feature-item p {
font-size: 14px;
line-height: 1.6;
color: var(--text-color);
}

.transformation-image img {
width: 100%;
border-radius: 8px;
}

.testimonials-modern {
padding: 80px 0;
background: var(--light-bg);
}

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

.testimonial-modern {
background: var(--white);
padding: 30px;
border-radius: 6px;
position: relative;
border-left: 3px solid var(--secondary-color);
}

.quote-mark {
font-size: 4rem;
color: var(--highlight-color);
line-height: 1;
margin-bottom: 10px;
font-family: 'Cormorant Garamond', serif;
}

.testimonial-modern p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 20px;
color: var(--text-color);
}

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

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

.process-simple {
padding: 80px 0;
background: var(--white);
}

.process-simple-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}

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

.process-number {
width: 70px;
height: 70px;
background: var(--secondary-color);
color: var(--primary-color);
border-radius: 50%;
font-size: 2rem;
font-weight: 600;
font-family: 'Cormorant Garamond', serif;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

.process-item h3 {
margin-bottom: 12px;
font-size: 1.15rem;
}

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

.final-cta {
padding: 80px 0;
background: var(--primary-color);
color: var(--white);
text-align: center;
}

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

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

.cta-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

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

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

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

.footer-links a {
color: var(--white);
opacity: 0.8;
transition: var(--transition);
}

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

.page-hero-modern {
background: linear-gradient(135deg, var(--light-bg) 0%, var(--highlight-color) 100%);
padding: 70px 0 50px;
text-align: center;
}

.breadcrumb {
font-size: 13px;
color: var(--accent-color);
margin-bottom: 15px;
}

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

.page-hero-modern p {
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto;
color: var(--text-color);
}

.content-section-modern {
padding: 80px 0;
background: var(--white);
}

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

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

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

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

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

.content-stats {
display: flex;
gap: 20px;
margin-top: 30px;
flex-wrap: wrap;
}

.stat-box {
background: var(--light-bg);
padding: 20px;
border-radius: 6px;
text-align: center;
flex: 1;
min-width: 120px;
}

.stat-box .stat-number {
font-size: 1.8rem;
font-weight: 600;
color: var(--secondary-color);
font-family: 'Cormorant Garamond', serif;
margin-bottom: 5px;
}

.stat-box .stat-label {
font-size: 12px;
color: var(--text-color);
}

.content-image-modern img {
width: 100%;
border-radius: 8px;
}

.benefits-modern {
padding: 80px 0;
background: var(--light-bg);
}

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

.benefit-modern {
background: var(--white);
padding: 30px 25px;
border-radius: 6px;
border-top: 3px solid var(--secondary-color);
}

.benefit-modern h3 {
margin-bottom: 12px;
font-size: 1.2rem;
color: var(--primary-color);
}

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

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

.services-detailed-modern-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}

.service-detailed-modern {
background: var(--light-bg);
padding: 30px;
border-radius: 6px;
display: flex;
gap: 20px;
align-items: flex-start;
}

.service-number {
width: 50px;
height: 50px;
background: var(--secondary-color);
color: var(--primary-color);
border-radius: 6px;
font-size: 1.5rem;
font-weight: 600;
font-family: 'Cormorant Garamond', serif;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.service-detailed-modern h3 {
margin-bottom: 10px;
font-size: 1.15rem;
}

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

.ideal-clients-modern {
padding: 80px 0;
background: var(--light-bg);
}

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

.client-modern {
background: var(--white);
padding: 30px 25px;
border-radius: 6px;
text-align: center;
border: 1px solid var(--border-color);
transition: var(--transition);
}

.client-modern:hover {
border-color: var(--secondary-color);
transform: translateY(-3px);
}

.client-modern h3 {
margin-bottom: 12px;
font-size: 1.15rem;
color: var(--secondary-color);
}

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

.packages {
padding: 60px 0;
}

.packages h2 {
text-align: center;
margin-bottom: 40px;
}

.packages-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.package-card {
background: var(--white);
border: 2px solid var(--border-color);
border-radius: 5px;
padding: 30px 25px;
text-align: center;
position: relative;
transition: var(--transition);
}

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

.package-card.featured {
border-color: var(--secondary-color);
background: var(--light-bg);
}

.popular-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--secondary-color);
color: var(--primary-color);
padding: 4px 15px;
font-size: 12px;
font-weight: 600;
border-radius: 20px;
}

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

.package-price {
font-size: 2.2rem;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 20px;
font-family: 'Cormorant Garamond', serif;
}

.package-features {
list-style: none;
margin-bottom: 25px;
text-align: left;
}

.package-features li {
padding: 8px 0;
font-size: 13px;
display: flex;
align-items: center;
gap: 10px;
}

.package-features i {
color: var(--secondary-color);
font-size: 14px;
}



.contact-hero {
background: var(--light-bg);
padding: 60px 0;
text-align: center;
}

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

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

.contact-section {
padding: 60px 0;
}

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

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

.contact-info > p {
margin-bottom: 25px;
line-height: 1.7;
}

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

.contact-item {
display: flex;
gap: 15px;
}

.contact-item i {
font-size: 1.3rem;
color: var(--secondary-color);
flex-shrink: 0;
margin-top: 3px;
}

.contact-item h3 {
font-size: 1rem;
margin-bottom: 5px;
}

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

.contact-form-wrapper {
background: var(--light-bg);
padding: 30px;
border-radius: 5px;
}

.contact-form h3 {
margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid var(--border-color);
border-radius: 3px;
font-size: 14px;
font-family: 'Montserrat', sans-serif;
transition: var(--transition);
}

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

.form-group textarea {
resize: vertical;
}

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

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

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

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

.contact-form button {
width: 100%;
}

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

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

.map-wrapper {
border-radius: 5px;
overflow: hidden;
}

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

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

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

.thankyou-icon i {
font-size: 4rem;
color: var(--secondary-color);
}

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

.thankyou-content p,
.error-content p {
font-size: 1.05rem;
margin-bottom: 30px;
line-height: 1.7;
}

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

.error-number {
font-size: 6rem;
font-weight: 600;
color: var(--secondary-color);
font-family: 'Cormorant Garamond', serif;
margin-bottom: 15px;
}

.policy-section {
padding: 60px 0;
}

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

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

.policy-date {
font-size: 13px;
color: var(--accent-color);
margin-bottom: 30px;
}

.policy-content h2 {
margin-top: 35px;
margin-bottom: 15px;
font-size: 1.5rem;
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 12px;
font-size: 1.2rem;
}

.policy-content h4 {
margin-top: 20px;
margin-bottom: 10px;
font-size: 1.05rem;
}

.policy-content p {
margin-bottom: 15px;
line-height: 1.7;
}

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

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

@media (max-width: 992px) {
h1 { font-size: 1.9rem; }
h2 { font-size: 1.6rem; }
.hero-mega-content h1 { font-size: 2.5rem; }
.hero-mega { min-height: 70vh; }
.philosophy-grid,
.content-grid-modern,
.transformation-content { grid-template-columns: 1fr; gap: 40px; }
.services-modern-grid { grid-template-columns: repeat(2, 1fr); }
.process-simple-grid { grid-template-columns: repeat(2, 1fr); }
.testimonials-modern-grid { grid-template-columns: 1fr; }
.benefits-modern-grid,
.clients-modern-grid { grid-template-columns: repeat(2, 1fr); }
.packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
.services-detailed-modern-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
.menu-toggle { display: flex; }
.nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 15px; border-top: 1px solid var(--border-color); display: none; }
.nav.active { display: flex; }
.hero-mega { min-height: 60vh; padding: 40px 0; }
.hero-mega-content h1 { font-size: 2rem; }
.hero-mega-content p { font-size: 1rem; }
.hero-stats { gap: 25px; }
.stat-number { font-size: 1.6rem; }
.philosophy,
.services-modern,
.transformation,
.testimonials-modern,
.process-simple,
.final-cta,
.content-section-modern,
.benefits-modern,
.services-detailed-modern,
.ideal-clients-modern { padding: 50px 0; }
.services-modern-grid,
.benefits-modern-grid,
.clients-modern-grid { grid-template-columns: 1fr; }
.process-simple-grid { grid-template-columns: 1fr; }
.footer-content { flex-direction: column; text-align: center; }
.footer-links { justify-content: center; }
.contact-wrapper {
    grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.container { padding: 0 15px; }
h1 { font-size: 1.6rem; }
h2 { font-size: 1.4rem; }
.hero-mega-content h1 { font-size: 1.7rem; }
.hero-mega-content p { font-size: 0.95rem; }
.hero-buttons { flex-direction: column; width: 100%; }
.hero-buttons a { width: 100%; text-align: center; }
.btn-primary, .btn-secondary, .btn-outline { padding: 10px 25px; font-size: 13px; }
.service-modern, .benefit-modern, .package-card, .client-modern { padding: 25px 20px; }
.service-icon { font-size: 1.6rem; }
.process-number { width: 60px; height: 60px; font-size: 1.6rem; }
.testimonial-modern { padding: 25px 20px; }
.quote-mark { font-size: 3rem; }
.error-number { font-size: 4rem; }
.thankyou-icon i { font-size: 3rem; }
.privacy-content { flex-direction: column; gap: 15px; }
.privacy-buttons { width: 100%; justify-content: center; }
.thankyou-actions, .error-actions, .cta-buttons { flex-direction: column; }
.thankyou-actions a, .error-actions a, .cta-buttons a { width: 100%; text-align: center; }
.content-stats { flex-direction: column; }
.stat-box { min-width: 100%; }
.hero-stats { justify-content: center; }
}

@media (max-width: 320px) {
body { font-size: 13px; }
.logo { font-size: 1.3rem; }
h1 { font-size: 1.4rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }
.hero-mega-content h1 { font-size: 1.5rem; }
.hero-badge { font-size: 11px; padding: 5px 15px; }
.stat-number { font-size: 1.4rem; }
.stat-label { font-size: 12px; }
.package-price { font-size: 1.8rem; }
.service-modern, .benefit-modern { padding: 20px 15px; }
.process-number { width: 50px; height: 50px; font-size: 1.4rem; }
}
