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

:root {
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #06b6d4;
--dark: #0f172a;
--gray: #64748b;
--light: #f1f5f9;
--white: #ffffff;
--success: #10b981;
--font-main: 'Space Grotesk', sans-serif;
--font-code: 'JetBrains Mono', monospace;
}

body {
font-family: var(--font-main);
line-height: 1.6;
color: var(--dark);
background: var(--white);
font-size: 15px;
overflow-x: hidden;
}

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

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

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

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

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

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary);
font-family: var(--font-code);
white-space: nowrap;
}

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

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

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

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: 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;
}

.btn {
display: inline-block;
padding: 12px 28px;
font-size: 14px;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
border: none;
transition: all 0.3s ease;
text-align: center;
}

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

.btn-primary:hover {
background: var(--secondary);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

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

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

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

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

.btn-large {
padding: 16px 40px;
font-size: 16px;
}

.mega-hero {
min-height: 90vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
color: var(--white);
padding: 100px 0 80px;
}

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

.code-line {
position: absolute;
font-family: var(--font-code);
font-size: 24px;
color: var(--accent);
white-space: nowrap;
animation: slideCode 10s linear infinite;
animation-delay: var(--delay);
}

.code-line:nth-child(1) {
top: 15%;
left: -100%;
}

.code-line:nth-child(2) {
top: 30%;
left: -100%;
}

.code-line:nth-child(3) {
top: 45%;
left: -100%;
}

.code-line:nth-child(4) {
top: 60%;
left: -100%;
}

.code-line:nth-child(5) {
top: 75%;
left: -100%;
}

.code-line:nth-child(6) {
top: 90%;
left: -100%;
}

.code-line:nth-child(7) {
top: 22%;
left: -100%;
}

@keyframes slideCode {
from {
transform: translateX(0);
}
to {
transform: translateX(200vw);
}
}

.mega-hero-content {
position: relative;
z-index: 2;
max-width: 800px;
}

.hero-badge {
display: inline-block;
padding: 8px 16px;
background: rgba(139, 92, 246, 0.2);
border: 1px solid var(--secondary);
border-radius: 30px;
font-size: 13px;
font-weight: 600;
color: var(--secondary);
margin-bottom: 25px;
}

.mega-hero-content h1 {
font-size: 64px;
font-weight: 700;
line-height: 1.1;
margin-bottom: 25px;
background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

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

.hero-stats-inline {
display: flex;
gap: 40px;
margin-bottom: 35px;
flex-wrap: wrap;
}

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

.stat-inline strong {
font-size: 32px;
font-weight: 700;
color: var(--accent);
font-family: var(--font-code);
}

.stat-inline span {
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
}

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

.trust-bar {
background: var(--primary);
color: var(--white);
padding: 20px 0;
text-align: center;
}

.trust-bar p {
font-size: 14px;
font-weight: 500;
opacity: 0.9;
}

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

.section-header.centered {
text-align: center;
max-width: 700px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
}

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

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

.section-header p {
font-size: 17px;
color: var(--gray);
line-height: 1.7;
}

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

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

.capability-card {
padding: 40px;
background: var(--light);
border-radius: 12px;
transition: all 0.3s ease;
position: relative;
}

.capability-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.capability-number {
font-size: 48px;
font-weight: 700;
color: var(--primary);
opacity: 0.2;
font-family: var(--font-code);
line-height: 1;
margin-bottom: 15px;
}

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

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

.workflow-visual {
padding: 100px 0;
background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

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

.workflow-image-side {
position: relative;
}

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

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

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

.workflow-content-side > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 35px;
line-height: 1.7;
}

.workflow-features {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 35px;
}

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

.feature-check {
width: 24px;
height: 24px;
background: var(--success);
border-radius: 50%;
flex-shrink: 0;
position: relative;
}

.feature-check::after {
content: '✓';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: var(--white);
font-size: 14px;
font-weight: 700;
}

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

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

.integration-ecosystem {
padding: 100px 0;
background: var(--dark);
color: var(--white);
}

.integration-ecosystem .section-label {
color: var(--accent);
}

.integration-ecosystem .section-header h2 {
color: var(--white);
}

.integration-ecosystem .section-header p {
color: rgba(255, 255, 255, 0.7);
}

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

.integration-category h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
color: var(--white);
}

.integration-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.integration-tags span {
padding: 8px 16px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 6px;
font-size: 13px;
font-weight: 500;
transition: all 0.3s ease;
}

.integration-tags span:hover {
background: rgba(255, 255, 255, 0.2);
border-color: var(--accent);
}

.developer-experience {
padding: 100px 0;
background: var(--white);
}

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

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

.dx-content > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 40px;
line-height: 1.7;
}

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

.dx-metric {
text-align: center;
padding: 25px;
background: var(--light);
border-radius: 8px;
}

.metric-value {
font-size: 32px;
font-weight: 700;
color: var(--primary);
font-family: var(--font-main);
margin-bottom: 8px;
}

.metric-label {
font-size: 13px;
color: var(--gray);
font-weight: 500;
}

.dx-image {
position: relative;
}

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

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

.pricing-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}

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

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

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

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

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

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

.price {
font-size: 48px;
font-weight: 700;
color: var(--primary);
font-family: var(--font-code);
}

.price span {
font-size: 16px;
color: var(--gray);
font-weight: 400;
}

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

.pricing-features li {
padding: 12px 0;
font-size: 14px;
color: var(--gray);
border-bottom: 1px solid var(--light);
}

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

.pricing-card .btn {
width: 100%;
}

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

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

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

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

.testimonial-author strong {
display: block;
font-size: 16px;
font-weight: 600;
color: var(--dark);
margin-bottom: 5px;
}

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

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

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

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

.final-cta-content > p {
font-size: 18px;
margin-bottom: 40px;
opacity: 0.9;
}

.cta-actions {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}

.cta-note {
font-size: 13px;
opacity: 0.8;
}

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

.final-cta .btn-primary:hover {
background: var(--light);
}

.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;
color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
}

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 20px;
z-index: 1000;
transform: translateY(100%);
transition: transform 0.3s ease;
box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.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 {
font-size: 13px;
flex: 1;
min-width: 250px;
}

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

.privacy-actions .btn {
padding: 8px 20px;
font-size: 13px;
}

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

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

.page-hero p {
font-size: 18px;
opacity: 0.9;
max-width: 700px;
margin: 0 auto;
}

@media (max-width: 992px) {
.mega-hero-content h1 {
font-size: 48px;
}

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

.workflow-split,
.dx-split {
grid-template-columns: 1fr;
gap: 50px;
}

.dx-image {
order: -1;
}

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

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

.dx-metrics {
grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 70px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.nav.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}

.menu-toggle {
display: flex;
}

.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

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

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

.hero-stats-inline {
gap: 25px;
}

.stat-inline strong {
font-size: 24px;
}

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

.integration-categories {
grid-template-columns: 1fr;
}

.dx-metrics {
grid-template-columns: 1fr;
}

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

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

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

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

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

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

.container {
padding: 0 15px;
}

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

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

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

.hero-actions .btn {
width: 100%;
}

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

.capabilities,
.workflow-visual,
.integration-ecosystem,
.developer-experience,
.pricing-preview,
.testimonials,
.final-cta {
padding: 60px 0;
}

.capability-card {
padding: 30px 25px;
}

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

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

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


.contact-main {
padding: 100px 0;
background: var(--white);
}

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

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

.contact-info-section > p {
font-size: 16px;
color: var(--gray);
margin-bottom: 40px;
line-height: 1.7;
}

.contact-methods {
display: flex;
flex-direction: column;
gap: 30px;
margin-bottom: 40px;
}

.contact-method {
display: flex;
gap: 20px;
padding: 25px;
background: var(--light);
border-radius: 8px;
}

.method-icon {
font-size: 32px;
flex-shrink: 0;
}

.method-content h3 {
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
color: var(--dark);
}

.method-content p {
font-size: 15px;
color: var(--gray);
line-height: 1.6;
margin: 0;
}

.method-note {
display: block;
font-size: 13px;
color: var(--gray);
margin-top: 5px;
opacity: 0.8;
}

.response-time {
padding: 30px;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
border-radius: 12px;
color: var(--white);
}

.response-time h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
}

.response-stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

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

.response-stat strong {
display: block;
font-size: 28px;
font-weight: 700;
margin-bottom: 5px;
font-family: var(--font-code);
}

.response-stat span {
font-size: 13px;
opacity: 0.9;
}

.contact-form-section {
background: var(--white);
border: 1px solid rgba(0,0,0,0.08);
border-radius: 12px;
padding: 40px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-modern h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 30px;
color: var(--dark);
}

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

.form-field label {
display: block;
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: var(--dark);
}

.form-field input,
.form-field textarea {
width: 100%;
padding: 14px 16px;
font-size: 15px;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 8px;
font-family: var(--font-main);
transition: all 0.3s ease;
background: var(--white);
}

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

.form-field textarea {
resize: vertical;
min-height: 140px;
}

.form-checkbox {
display: flex;
align-items: flex-start;
gap: 10px;
}

.form-checkbox input[type="checkbox"] {
width: 18px;
height: 18px;
margin-top: 2px;
cursor: pointer;
flex-shrink: 0;
}

.form-checkbox label {
font-size: 14px;
color: var(--gray);
line-height: 1.6;
cursor: pointer;
}

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

.contact-form-modern .btn {
width: 100%;
margin-top: 10px;
}

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

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

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-main {
padding: 120px 0;
min-height: calc(100vh - 150px);
display: flex;
align-items: center;
background: var(--white);
}

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

.thankyou-icon-large {
font-size: 80px;
margin-bottom: 30px;
}

.thankyou-container h1 {
font-size: 42px;
font-weight: 700;
margin-bottom: 20px;
color: var(--dark);
}

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

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

.error-main {
padding: 120px 0;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
background: var(--white);
}

.error-container {
text-align: center;
max-width: 650px;
margin: 0 auto;
}

.error-code-large {
font-size: 140px;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 20px;
font-family: var(--font-code);
opacity: 0.8;
}

.error-container h1 {
font-size: 38px;
font-weight: 700;
margin-bottom: 20px;
color: var(--dark);
}

.error-container p {
font-size: 17px;
color: var(--gray);
margin-bottom: 40px;
line-height: 1.7;
}

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

.error-links {
background: var(--light);
padding: 30px;
border-radius: 12px;
text-align: left;
}

.error-links h2 {
font-size: 20px;
font-weight: 600;
margin-bottom: 20px;
color: var(--dark);
}

.error-links ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}

.error-links a {
font-size: 15px;
color: var(--primary);
font-weight: 500;
}

.error-links a:hover {
text-decoration: underline;
}

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

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

.policy-section {
margin-bottom: 50px;
}

.policy-section h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 20px;
color: var(--dark);
}

.policy-section h3 {
font-size: 22px;
font-weight: 600;
margin: 25px 0 15px;
color: var(--dark);
}

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

.policy-section ul {
margin: 15px 0 15px 25px;
}

.policy-section li {
font-size: 15px;
color: var(--gray);
line-height: 1.8;
margin-bottom: 10px;
}

@media (max-width: 992px) {
.contact-grid {
grid-template-columns: 1fr;
gap: 50px;
}

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

@media (max-width: 768px) {
.contact-main,
.map-section-modern,
.thankyou-main,
.error-main,
.policy-main {
padding: 60px 0;
}

.contact-info-section h2,
.map-section-modern h2 {
font-size: 28px;
}

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

.thankyou-icon-large {
font-size: 60px;
}

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

.error-code-large {
font-size: 100px;
}

.error-container h1 {
font-size: 28px;
}

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

.policy-section h3 {
font-size: 20px;
}
}

@media (max-width: 480px) {
.contact-methods {
gap: 20px;
}

.contact-method {
padding: 20px;
}

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

.response-stats {
grid-template-columns: 1fr;
gap: 15px;
}

.response-time {
padding: 25px;
}

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

.thankyou-container h1 {
font-size: 26px;
}

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

.thankyou-actions .btn {
width: 100%;
}

.error-code-large {
font-size: 80px;
}

.error-container h1 {
font-size: 24px;
}

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

.error-actions .btn {
width: 100%;
}

.error-links {
padding: 25px 20px;
}
}
