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

:root {
--primary: #2563eb;
--secondary: #7c3aed;
--accent: #06b6d4;
--dark: #1e293b;
--light: #f8fafc;
--text: #334155;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--text);
background: #fff;
}

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

.header {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 15px 0;
position: relative;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
z-index: 999;
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: #fff;
letter-spacing: -0.5px;
}

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

.nav a {
color: #fff;
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: opacity 0.3s;
position: relative;
}

.nav a:hover {
opacity: 0.8;
}

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

.menu-toggle span {
width: 25px;
height: 2px;
background: #fff;
margin: 3px 0;
transition: 0.3s;
border-radius: 2px;
}

.mega-hero {
position: relative;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 100px 0 120px;
overflow: hidden;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.1;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
}

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

.hero-text {
color: #fff;
}

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

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

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

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

.btn {
display: inline-block;
padding: 14px 32px;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
border: none;
cursor: pointer;
}

.btn-primary {
background: #fff;
color: var(--primary);
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.btn-secondary {
background: transparent;
color: #fff;
border: 2px solid #fff;
}

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

.btn-light {
background: #fff;
color: var(--primary);
}

.hero-image {
position: relative;
}

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

.hero-wave {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
}

.hero-wave::before {
content: '';
display: block;
width: 100%;
height: 60px;
background: #fff;
clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.stats {
padding: 60px 0;
background: var(--light);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
text-align: center;
}

.stat-number {
font-size: 42px;
font-weight: 800;
color: var(--primary);
margin-bottom: 8px;
}

.stat-label {
font-size: 14px;
color: var(--text);
font-weight: 500;
}

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

.section-header h2 {
font-size: 36px;
margin-bottom: 15px;
color: var(--dark);
font-weight: 700;
}

.section-header p {
font-size: 16px;
color: var(--text);
max-width: 700px;
margin: 0 auto;
}

.services {
padding: 80px 0;
}

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

.service-card {
background: #fff;
padding: 35px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: all 0.3s;
border: 1px solid #e2e8f0;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

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

.service-card h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

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

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

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

.about-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-content h2 {
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
font-weight: 700;
}

.about-content > p {
font-size: 16px;
color: var(--text);
margin-bottom: 30px;
line-height: 1.7;
}

.features-list {
display: flex;
flex-direction: column;
gap: 20px;
}

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

.feature-check {
width: 28px;
height: 28px;
background: var(--primary);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 14px;
font-weight: 700;
}

.feature-item h4 {
font-size: 16px;
margin-bottom: 5px;
color: var(--dark);
font-weight: 600;
}

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

.process-modern {
padding: 80px 0;
}

.process-timeline {
max-width: 900px;
margin: 0 auto;
}

.timeline-item {
display: grid;
grid-template-columns: 80px 1fr;
gap: 30px;
margin-bottom: 40px;
position: relative;
}

.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 39px;
top: 80px;
width: 2px;
height: calc(100% - 40px);
background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-number {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.timeline-content h3 {
font-size: 22px;
margin-bottom: 10px;
color: var(--dark);
font-weight: 600;
}

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

.technology-brands {
padding: 80px 0;
background: var(--light);
text-align: center;
}

.brands-text {
font-size: 15px;
color: var(--text);
max-width: 900px;
margin: 0 auto;
line-height: 1.8;
}

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

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

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

.testimonial-text p {
font-size: 15px;
color: var(--text);
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

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

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

.service-area {
padding: 60px 0;
background: var(--light);
}

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

.area-content h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--dark);
font-weight: 700;
}

.area-content p {
font-size: 16px;
color: var(--text);
line-height: 1.7;
}

.benefits-section {
padding: 80px 0;
}

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

.benefit-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
}

.benefit-card h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary);
font-weight: 600;
}

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

.faq-section {
padding: 80px 0;
background: var(--light);
}

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

.faq-item {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

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

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

.cta-content h2 {
font-size: 38px;
margin-bottom: 20px;
font-weight: 700;
}

.cta-content p {
font-size: 18px;
margin-bottom: 35px;
opacity: 0.95;
max-width: 800px;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
}

.footer {
background: var(--dark);
color: #fff;
padding: 50px 0 20px;
}

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

.footer-section h3 {
font-size: 16px;
margin-bottom: 15px;
color: #fff;
font-weight: 600;
}

.footer-section p {
font-size: 13px;
color: #cbd5e0;
margin-bottom: 8px;
line-height: 1.6;
}

.footer-section a {
display: block;
color: #cbd5e0;
text-decoration: none;
font-size: 13px;
margin-bottom: 8px;
transition: color 0.3s;
}

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

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid #334155;
}

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

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

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

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

.pricing {
padding: 80px 0;
}

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

.pricing-card {
background: #fff;
border: 2px solid #e2e8f0;
border-radius: 12px;
padding: 40px;
text-align: center;
transition: all 0.3s;
}

.pricing-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0,0,0,0.15);
border-color: var(--primary);
}

.pricing-card.featured {
border-color: var(--primary);
box-shadow: 0 8px 30px rgba(37,99,235,0.2);
}

.pricing-card h3 {
font-size: 24px;
margin-bottom: 15px;
color: var(--dark);
font-weight: 600;
}

.price {
font-size: 42px;
font-weight: 800;
color: var(--primary);
margin-bottom: 25px;
}

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

.pricing-card li {
font-size: 14px;
color: var(--text);
margin-bottom: 12px;
padding-left: 25px;
position: relative;
line-height: 1.5;
}

.pricing-card li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--primary);
font-weight: 700;
font-size: 16px;
}

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

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

.service-item {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-item h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary);
font-weight: 600;
}

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

.service-price {
font-size: 18px;
font-weight: 700;
color: var(--dark);
}

.pricing-info {
padding: 80px 0;
}

.pricing-info h2 {
text-align: center;
font-size: 36px;
margin-bottom: 30px;
color: var(--dark);
font-weight: 700;
}

.pricing-info p {
font-size: 15px;
color: var(--text);
max-width: 900px;
margin: 0 auto 20px;
line-height: 1.8;
}

.installation-services {
padding: 80px 0;
}

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

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

.installation-item h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary);
font-weight: 600;
}

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

.installation-process {
padding: 80px 0;
background: var(--light);
}

.installation-process h2 {
text-align: center;
font-size: 36px;
margin-bottom: 30px;
color: var(--dark);
font-weight: 700;
}

.installation-process p {
font-size: 15px;
color: var(--text);
max-width: 900px;
margin: 0 auto 20px;
line-height: 1.8;
}

.installation-benefits {
padding: 80px 0;
}

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

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

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

.contact-info {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 50px 40px;
border-radius: 16px;
color: #fff;
box-shadow: 0 10px 40px rgba(37,99,235,0.2);
}

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

.contact-info > p {
font-size: 15px;
opacity: 0.9;
margin-bottom: 35px;
line-height: 1.6;
}

.info-item {
margin-bottom: 30px;
padding: 20px;
background: rgba(255,255,255,0.1);
border-radius: 10px;
backdrop-filter: blur(10px);
transition: all 0.3s;
}

.info-item:hover {
background: rgba(255,255,255,0.15);
transform: translateX(5px);
}

.info-item h3 {
font-size: 14px;
margin-bottom: 10px;
color: #fff;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
opacity: 0.9;
}

.info-item p {
font-size: 16px;
color: #fff;
line-height: 1.6;
word-break: break-word;
font-weight: 500;
}

.contact-form-wrapper {
background: #fff;
padding: 40px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
border: 1px solid #e2e8f0;
}

.contact-form-wrapper h2 {
font-size: 32px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 700;
}

.contact-form-wrapper > p {
font-size: 15px;
color: var(--text);
margin-bottom: 30px;
line-height: 1.6;
}

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

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

.form-group label {
font-size: 14px;
font-weight: 600;
margin-bottom: 10px;
color: var(--dark);
}

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

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

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

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

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 12px;
font-weight: 400;
cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
margin-top: 2px;
cursor: pointer;
width: 20px;
height: 20px;
flex-shrink: 0;
accent-color: var(--primary);
}

.checkbox-group span {
font-size: 14px;
color: var(--text);
line-height: 1.6;
}

.checkbox-group a {
color: var(--primary);
text-decoration: none;
font-weight: 600;
}

.checkbox-group a:hover {
text-decoration: underline;
}

.contact-form .btn-primary {
margin-top: 10px;
padding: 16px 32px;
font-size: 15px;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
border: none;
color: #fff;
cursor: pointer;
transition: all 0.3s;
}

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

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

.map-section h2 {
text-align: center;
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
font-weight: 700;
}

.map-section > .container > p {
text-align: center;
font-size: 16px;
color: var(--text);
max-width: 700px;
margin: 0 auto 40px;
line-height: 1.6;
}

.map-wrapper {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
border: 4px solid #fff;
}

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

.policy-page h1 {
font-size: 40px;
margin-bottom: 10px;
color: var(--dark);
font-weight: 700;
}

.update-date {
font-size: 13px;
color: #94a3b8;
margin-bottom: 40px;
}

.policy-page h2 {
font-size: 26px;
margin-top: 35px;
margin-bottom: 15px;
color: var(--primary);
font-weight: 600;
}

.policy-page p {
font-size: 15px;
color: var(--text);
line-height: 1.8;
margin-bottom: 15px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: #fff;
padding: 20px;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
z-index: 1000;
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 {
font-size: 14px;
margin: 0;
flex: 1;
line-height: 1.5;
}

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

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

.privacy-buttons button {
background: var(--primary);
color: #fff;
border: none;
padding: 10px 25px;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: background 0.3s;
}

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

.error-page,
.thankyou-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: #fff;
text-align: center;
padding: 20px;
}

.error-content h1 {
font-size: 120px;
font-weight: 800;
margin-bottom: 20px;
line-height: 1;
}

.error-content h2 {
font-size: 32px;
margin-bottom: 15px;
font-weight: 600;
}

.error-content p {
font-size: 16px;
margin-bottom: 30px;
opacity: 0.95;
}

.thankyou-content h1 {
font-size: 42px;
margin-bottom: 20px;
font-weight: 700;
}

.thankyou-content p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.95;
max-width: 600px;
line-height: 1.6;
}

@media (max-width: 968px) {
.hero-content {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-image {
order: -1;
}

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

.timeline-item {
grid-template-columns: 60px 1fr;
gap: 20px;
}

.timeline-number {
width: 60px;
height: 60px;
font-size: 20px;
}

.timeline-item:not(:last-child)::after {
left: 29px;
top: 60px;
}
}

@media (max-width: 768px) {
.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary);
flex-direction: column;
padding: 20px;
gap: 15px;
display: none;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav.active {
display: flex;
}

.menu-toggle {
display: flex;
}

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

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

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

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

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

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

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

.about-content h2,
.area-content h2 {
font-size: 28px;
}

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

.contact-info {
padding: 40px 30px;
}

.contact-info h2,
.contact-form-wrapper h2 {
font-size: 26px;
}

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

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

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

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

.error-content h1 {
font-size: 80px;
}

.error-content h2 {
font-size: 24px;
}

.thankyou-content h1 {
font-size: 32px;
}

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

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

.footer-content {
grid-template-columns: 1fr;
gap: 25px;
}

.services-grid,
.pricing-grid,
.installation-grid,
.benefits-grid,
.faq-grid {
grid-template-columns: 1fr;
}

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

@media (max-width: 480px) {
.mega-hero h1 {
font-size: 26px;
}

.logo {
font-size: 15px;
}

.btn {
padding: 12px 24px;
font-size: 13px;
}

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

.contact-info {
padding: 30px 20px;
}

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

.contact-info h2,
.contact-form-wrapper h2 {
font-size: 24px;
}

.info-item {
padding: 15px;
margin-bottom: 20px;
}

.info-item h3 {
font-size: 13px;
}

.info-item p {
font-size: 15px;
}

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

.contact-form .btn-primary {
padding: 14px 28px;
font-size: 14px;
}

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

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

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

.mega-hero h1 {
font-size: 22px;
}

.mega-hero p {
font-size: 14px;
}

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

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

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

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

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

.contact-wrapper {
gap: 30px;
}

.contact-info {
padding: 25px 18px;
border-radius: 12px;
}

.contact-form-wrapper {
padding: 25px 18px;
border-radius: 12px;
}

.contact-info h2,
.contact-form-wrapper h2 {
font-size: 22px;
margin-bottom: 12px;
}

.contact-info > p,
.contact-form-wrapper > p {
font-size: 14px;
}

.info-item {
padding: 12px;
margin-bottom: 15px;
border-radius: 8px;
}

.info-item h3 {
font-size: 12px;
margin-bottom: 8px;
}

.info-item p {
font-size: 14px;
}

.form-group {
gap: 0;
}

.form-group label {
font-size: 13px;
margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
padding: 11px 12px;
font-size: 14px;
border-radius: 8px;
}

.form-group textarea {
min-height: 100px;
}

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

.checkbox-group input[type="checkbox"] {
width: 18px;
height: 18px;
}

.contact-form .btn-primary {
padding: 13px 24px;
font-size: 14px;
margin-top: 5px;
}

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

.map-section h2 {
font-size: 22px;
margin-bottom: 15px;
}

.map-wrapper {
border-radius: 12px;
border-width: 2px;
}

.page-hero {
padding: 40px 0;
}

.page-hero h1 {
font-size: 24px;
margin-bottom: 12px;
}

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

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

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

.logo {
font-size: 14px;
}

.btn {
padding: 11px 20px;
font-size: 13px;
}
}