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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #1a202c;
background: #fff;
font-size: 14px;
}

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

.header-modern {
background: #fff;
padding: 15px 0;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 100;
}

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

.logo-brand {
font-size: 20px;
font-weight: 800;
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

.menu-toggle span {
width: 24px;
height: 2px;
background: #2563eb;
transition: 0.3s;
}

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

.nav a {
color: #4b5563;
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: color 0.3s;
position: relative;
}

.nav a:hover {
color: #2563eb;
}

.hero-modern {
min-height: 600px;
position: relative;
display: flex;
align-items: center;
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%);
overflow: hidden;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="900" cy="400" r="120" fill="rgba(255,255,255,0.05)"/><circle cx="1100" cy="150" r="60" fill="rgba(255,255,255,0.05)"/></svg>');
}

.hero-content-wrapper {
position: relative;
z-index: 2;
width: 100%;
}

.hero-text {
max-width: 700px;
color: #fff;
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
backdrop-filter: blur(10px);
}

.hero-text h1 {
font-size: 48px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 20px;
}

.hero-text p {
font-size: 18px;
line-height: 1.7;
margin-bottom: 30px;
opacity: 0.95;
}

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

.btn-hero-primary {
display: inline-block;
background: #fff;
color: #2563eb;
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-weight: 700;
font-size: 15px;
transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
display: inline-block;
background: transparent;
color: #fff;
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-weight: 700;
font-size: 15px;
border: 2px solid #fff;
transition: all 0.3s;
}

.btn-hero-secondary:hover {
background: #fff;
color: #2563eb;
}

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

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

.stat-number {
font-size: 36px;
font-weight: 800;
color: #fff;
line-height: 1;
}

.stat-label {
font-size: 13px;
color: rgba(255,255,255,0.9);
margin-top: 5px;
}

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

.section-header h2 {
font-size: 36px;
font-weight: 800;
color: #1a202c;
margin-bottom: 12px;
}

.section-header p {
font-size: 16px;
color: #6b7280;
max-width: 600px;
margin: 0 auto;
}

.services-showcase {
padding: 80px 0;
background: #f9fafb;
}

.showcase-grid {
display: grid;
gap: 40px;
}

.showcase-card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
background: #fff;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.showcase-card:nth-child(even) {
direction: rtl;
}

.showcase-card:nth-child(even) .card-content {
direction: ltr;
}

.card-image {
position: relative;
overflow: hidden;
}

.card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.showcase-card:hover .card-image img {
transform: scale(1.05);
}

.card-content {
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
}

.card-content h3 {
font-size: 28px;
font-weight: 700;
color: #1a202c;
margin-bottom: 15px;
}

.card-content p {
font-size: 15px;
color: #4b5563;
line-height: 1.7;
margin-bottom: 25px;
}

.card-link {
display: inline-block;
color: #2563eb;
font-weight: 700;
font-size: 15px;
text-decoration: none;
transition: gap 0.3s;
}

.card-link:hover {
gap: 8px;
}

.why-choose {
padding: 80px 0;
background: #fff;
}

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

.benefit-box {
padding: 30px;
background: #f9fafb;
border-radius: 12px;
transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-icon {
font-size: 36px;
margin-bottom: 15px;
}

.benefit-box h3 {
font-size: 20px;
font-weight: 700;
color: #1a202c;
margin-bottom: 12px;
}

.benefit-box p {
font-size: 14px;
color: #6b7280;
line-height: 1.7;
}

.how-it-works {
padding: 80px 0;
background: #f9fafb;
}

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

.steps-timeline::before {
content: '';
position: absolute;
left: 30px;
top: 30px;
bottom: 30px;
width: 2px;
background: #e5e7eb;
}

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

.step-marker {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 800;
flex-shrink: 0;
z-index: 2;
box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.step-content {
flex: 1;
padding-top: 8px;
}

.step-content h3 {
font-size: 22px;
font-weight: 700;
color: #1a202c;
margin-bottom: 10px;
}

.step-content p {
font-size: 14px;
color: #6b7280;
line-height: 1.7;
}

.pricing-preview {
padding: 80px 0;
background: #fff;
}

.pricing-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 40px;
}

.price-card {
background: #fff;
border: 2px solid #e5e7eb;
border-radius: 16px;
padding: 35px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
}

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

.featured-card {
border-color: #2563eb;
background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
}

.popular-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
color: #fff;
padding: 4px 16px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
}

.price-header h3 {
font-size: 24px;
font-weight: 700;
color: #1a202c;
margin-bottom: 15px;
}

.price-amount {
font-size: 42px;
font-weight: 800;
color: #2563eb;
margin-bottom: 25px;
}

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

.price-features li {
font-size: 14px;
color: #4b5563;
padding: 12px 0;
border-bottom: 1px solid #e5e7eb;
}

.price-features li:last-child {
border-bottom: none;
}

.price-btn {
display: block;
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
color: #fff;
padding: 12px 24px;
text-decoration: none;
border-radius: 8px;
font-weight: 700;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
}

.price-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.testimonials-modern {
padding: 80px 0;
background: #f9fafb;
}

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

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

.testimonial-text p {
font-size: 15px;
color: #4b5563;
line-height: 1.8;
font-style: italic;
margin-bottom: 25px;
}

.testimonial-author strong {
display: block;
font-size: 16px;
font-weight: 700;
color: #1a202c;
margin-bottom: 4px;
}

.testimonial-author span {
font-size: 13px;
color: #9ca3af;
}

.location-section {
padding: 80px 0;
background: #fff;
}

.location-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.location-details h2 {
font-size: 36px;
font-weight: 800;
color: #1a202c;
margin-bottom: 20px;
text-align: left;
}

.location-details > p {
font-size: 15px;
color: #6b7280;
line-height: 1.7;
margin-bottom: 35px;
}

.location-info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
}

.info-item strong {
display: block;
font-size: 14px;
font-weight: 700;
color: #2563eb;
margin-bottom: 8px;
}

.info-item p {
font-size: 14px;
color: #4b5563;
line-height: 1.6;
}

.location-map {
height: 450px;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-section {
padding: 80px 0;
background: #f9fafb;
}

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

.faq-item {
background: #fff;
padding: 30px;
border-radius: 12px;
border-left: 4px solid #2563eb;
}

.faq-item h3 {
font-size: 18px;
font-weight: 700;
color: #1a202c;
margin-bottom: 12px;
}

.faq-item p {
font-size: 14px;
color: #6b7280;
line-height: 1.7;
}

.final-cta {
padding: 100px 0;
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%);
text-align: center;
position: relative;
overflow: hidden;
}

.final-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="100" r="80" fill="rgba(255,255,255,0.05)"/></svg>');
}

.cta-content {
position: relative;
z-index: 2;
}

.cta-content h2 {
font-size: 42px;
font-weight: 800;
color: #fff;
margin-bottom: 15px;
}

.cta-content p {
font-size: 18px;
color: rgba(255,255,255,0.95);
margin-bottom: 35px;
}

.btn-cta-large {
display: inline-block;
background: #fff;
color: #2563eb;
padding: 18px 48px;
text-decoration: none;
border-radius: 12px;
font-weight: 800;
font-size: 17px;
transition: transform 0.3s, box-shadow 0.3s;
}

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

footer {
background: #1a202c;
color: #fff;
padding: 50px 0 25px;
}

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

.footer-section h4 {
font-size: 18px;
margin-bottom: 18px;
color: #fff;
font-weight: 700;
}

.footer-section p {
font-size: 14px;
color: #9ca3af;
line-height: 1.7;
}

.footer-section a {
display: block;
color: #9ca3af;
text-decoration: none;
font-size: 14px;
margin-bottom: 10px;
transition: color 0.3s;
}

.footer-section a:hover {
color: #fff;
}

.footer-bottom {
border-top: 1px solid #374151;
padding-top: 25px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-bottom p {
font-size: 13px;
color: #9ca3af;
}

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

.footer-links a {
font-size: 13px;
color: #9ca3af;
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: #fff;
}

.page-hero {
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
color: #fff;
padding: 80px 0;
text-align: center;
}

.page-hero h1 {
font-size: 42px;
font-weight: 800;
margin-bottom: 15px;
}

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

.content-section {
padding: 70px 0;
background: #fff;
}

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

.requirement-item {
background: #f9fafb;
padding: 30px;
border-radius: 12px;
border-left: 4px solid #2563eb;
}

.requirement-item h3 {
color: #2563eb;
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
}

.requirement-item p {
font-size: 14px;
color: #6b7280;
line-height: 1.7;
}

.products-section {
background: #f9fafb;
padding: 70px 0;
}

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

.product-card {
background: #fff;
padding: 35px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
text-align: center;
transition: transform 0.3s;
}

.product-card:hover {
transform: translateY(-8px);
}

.product-card.featured {
border: 2px solid #2563eb;
}

.product-card h3 {
font-size: 24px;
font-weight: 700;
margin-bottom: 15px;
}

.product-card .price {
font-size: 38px;
font-weight: 800;
color: #2563eb;
margin-bottom: 25px;
}

.product-card ul {
list-style: none;
margin-bottom: 30px;
text-align: left;
}

.product-card ul li {
font-size: 14px;
padding: 10px 0;
border-bottom: 1px solid #e5e7eb;
}

.product-card ul li:last-child {
border-bottom: none;
}

.btn-primary {
display: inline-block;
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
color: #fff;
padding: 12px 28px;
text-decoration: none;
border-radius: 8px;
font-weight: 700;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: #2563eb;
padding: 12px 28px;
text-decoration: none;
border-radius: 8px;
font-weight: 700;
font-size: 14px;
border: 2px solid #2563eb;
transition: all 0.3s;
}

.btn-secondary:hover {
background: #2563eb;
color: #fff;
}

.info-section {
background: #fff;
padding: 70px 0;
text-align: center;
}

.info-section p {
max-width: 800px;
margin: 0 auto 20px;
font-size: 15px;
color: #6b7280;
line-height: 1.8;
}

.info-section .btn-secondary {
margin-top: 20px;
}

.process-section {
background: #f9fafb;
padding: 70px 0;
}

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

.process-item {
background: #fff;
padding: 30px;
border-radius: 12px;
text-align: center;
box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.process-item h3 {
color: #2563eb;
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
}

.process-item p {
font-size: 14px;
color: #6b7280;
line-height: 1.7;
}

.country-info {
margin-top: 40px;
background: #f9fafb;
padding: 35px;
border-radius: 12px;
}

.country-info h3 {
margin-bottom: 20px;
font-size: 22px;
font-weight: 700;
}

.country-info ul {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 12px;
}

.country-info ul li {
font-size: 14px;
padding: 10px 15px;
background: #fff;
border-radius: 8px;
}

.contact-section {
padding: 70px 0;
background: #fff;
}

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

.contact-info h2 {
text-align: left;
font-size: 36px;
font-weight: 800;
margin-bottom: 20px;
}

.contact-info p {
font-size: 15px;
color: #6b7280;
margin-bottom: 25px;
line-height: 1.7;
}

.contact-details {
margin: 30px 0;
}

.contact-item {
margin-bottom: 25px;
}

.contact-item h3 {
font-size: 16px;
color: #2563eb;
font-weight: 700;
margin-bottom: 8px;
}

.contact-item p {
font-size: 14px;
color: #4b5563;
margin: 0;
}

.contact-form-wrapper h2 {
text-align: left;
font-size: 36px;
font-weight: 800;
margin-bottom: 20px;
}

.contact-form-wrapper > p {
font-size: 15px;
color: #6b7280;
margin-bottom: 30px;
}

.contact-form {
background: #f9fafb;
padding: 35px;
border-radius: 12px;
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-size: 14px;
font-weight: 700;
color: #1a202c;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 2px solid #e5e7eb;
border-radius: 8px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #2563eb;
}

.checkbox-group label {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
}

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

.checkbox-group span {
font-size: 13px;
font-weight: 400;
}

.map-container iframe {
border-radius: 12px;
}

.thank-you-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%);
color: #fff;
text-align: center;
padding: 20px;
}

.thank-you-content,
.error-content {
max-width: 650px;
}

.thank-you-content h1 {
font-size: 36px;
font-weight: 800;
margin-bottom: 20px;
}

.error-content h1 {
font-size: 96px;
font-weight: 800;
}

.error-content h2 {
color: #fff;
font-size: 32px;
font-weight: 700;
margin-bottom: 15px;
}

.thank-you-content p,
.error-content p {
font-size: 18px;
margin-bottom: 15px;
opacity: 0.95;
line-height: 1.7;
}

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

.policy-page {
padding: 70px 0;
background: #fff;
}

.policy-page h1 {
font-size: 42px;
font-weight: 800;
margin-bottom: 12px;
color: #1a202c;
}

.update-date {
font-size: 14px;
color: #9ca3af;
margin-bottom: 40px;
}

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

.policy-content h2 {
font-size: 28px;
margin-top: 45px;
margin-bottom: 18px;
text-align: left;
color: #1a202c;
font-weight: 700;
}

.policy-content h3 {
font-size: 20px;
margin-top: 30px;
margin-bottom: 15px;
color: #374151;
font-weight: 700;
}

.policy-content p {
font-size: 15px;
color: #6b7280;
line-height: 1.8;
margin-bottom: 18px;
}

.policy-content ul,
.policy-content ol {
margin-left: 30px;
margin-bottom: 18px;
}

.policy-content ul li,
.policy-content ol li {
font-size: 15px;
color: #6b7280;
line-height: 1.8;
margin-bottom: 10px;
word-break: break-all;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #1a202c;
color: #fff;
padding: 25px;
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
z-index: 1000;
display: none;
}

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

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

.popup-content p {
font-size: 14px;
margin: 0;
flex: 1;
}

.popup-actions {
display: flex;
gap: 15px;
}

.popup-actions a {
color: #fff;
text-decoration: underline;
font-size: 14px;
}

.popup-actions button {
background: #2563eb;
color: #fff;
border: none;
padding: 10px 24px;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
font-weight: 700;
}

@media (max-width: 968px) {
.showcase-card {
grid-template-columns: 1fr;
}

.showcase-card:nth-child(even) {
direction: ltr;
}

.location-wrapper {
grid-template-columns: 1fr;
}

.location-info-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
padding: 20px;
gap: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav.active {
display: flex;
}

.hero-modern {
min-height: 500px;
}

.hero-text h1 {
font-size: 36px;
}

.hero-text p {
font-size: 16px;
}

.hero-stats {
gap: 25px;
}

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

.section-header h2 {
font-size: 28px;
}

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

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

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

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

.steps-timeline::before {
display: none;
}
}

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

.hero-modern {
min-height: 450px;
padding: 40px 0;
}

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

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

.hero-buttons {
flex-direction: column;
}

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

.section-header h2 {
font-size: 24px;
}

.section-header p {
font-size: 14px;
}

.benefits-grid,
.pricing-cards,
.testimonials-slider,
.faq-grid {
grid-template-columns: 1fr;
}

.cta-content h2 {
font-size: 32px;
}

.cta-content p {
font-size: 16px;
}

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

.contact-info h2,
.contact-form-wrapper h2,
.location-details h2 {
font-size: 28px;
}
}

@media (max-width: 320px) {
.hero-text h1 {
font-size: 24px;
}

.section-header h2 {
font-size: 22px;
}

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

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

.benefit-icon {
font-size: 28px;
}
}
