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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a90b8;
    --accent-color: #e85d33;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #218838;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem 2rem;
    color: var(--dark-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.hero-left {
    background: var(--light-bg);
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-align: center;
}

.cta-primary:hover,
.cta-secondary:hover {
    background: #d14a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 93, 51, 0.3);
}

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

.cta-secondary:hover {
    background: #234a5f;
}

.hero-right {
    padding: 0;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section,
.story-section,
.services-preview,
.benefits-split,
.testimonials-section,
.cta-section,
.form-section,
.urgency-section {
    padding: 4rem 2rem;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content,
.split-image {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.story-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.story-image-left {
    flex: 0 0 40%;
}

.story-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.story-content {
    flex: 1;
    padding: 2rem 0;
}

.story-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.benefit-block {
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.benefit-block.reverse {
    flex-direction: row-reverse;
}

.benefit-content,
.benefit-image {
    flex: 1;
}

.benefit-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
}

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

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

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.author {
    font-weight: 600;
    color: var(--gray);
}

.cta-section {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-info,
.form-container {
    flex: 1;
}

.form-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d14a1f;
    transform: translateY(-2px);
}

.urgency-section {
    background: #fff3e0;
    text-align: center;
}

.urgency-content h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 998;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(232, 93, 51, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #d14a1f;
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-intro-split {
    padding: 4rem 2rem;
}

.values-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.8;
    color: var(--dark-color);
}

.team-split {
    padding: 4rem 2rem;
}

.stats-section {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.mission-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

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

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-split {
    max-width: 1200px;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-image,
.service-detail-content {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #d14a1f;
    transform: translateY(-2px);
}

.warranty-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.warranty-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.warranty-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.warranty-content p {
    margin-bottom: 1rem;
}

.cta-services {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-split {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-block,
.contact-map-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map-block {
    position: relative;
}

.contact-map-block img {
    width: 100%;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 125, 0.9);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
}

.contact-methods {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.contact-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.methods-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.method-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.method-card p {
    line-height: 1.8;
}

.method-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-contact {
    padding: 4rem 2rem;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-contact {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color), #20c997);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.thanks-info {
    padding: 4rem 2rem;
}

.info-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-item p {
    line-height: 1.8;
}

.thanks-contact {
    padding: 3rem 2rem;
    background: var(--light-bg);
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--gray);
}

.thanks-cta {
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.legal-page {
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.update-date {
    color: var(--gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-container,
    .split-container.reverse,
    .benefit-block,
    .benefit-block.reverse,
    .story-wrapper,
    .form-split,
    .contact-split,
    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .services-grid,
    .testimonials-container,
    .values-grid,
    .methods-grid,
    .steps-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial,
    .value-card,
    .method-card,
    .step-item {
        flex: 1 1 100%;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .page-hero-content h1,
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .split-content h2,
    .services-preview h2,
    .testimonials-section h2,
    .cta-container h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }
}