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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #1d4ed8;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
    text-decoration: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: #f8fafc;
    padding: 4rem 3rem;
}

.hero-text-content {
    max-width: 550px;
}

.hero-text-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-text-content p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
}

.hero-right {
    background: #e2e8f0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #1d4ed8;
    text-decoration: none;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #2563eb;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}

.intro-split {
    display: flex;
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-left {
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.intro-left p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1rem;
}

.intro-right {
    overflow: hidden;
}

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

.why-us-section {
    background: #1e293b;
    color: #fff;
    padding: 5rem 2rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2.25rem;
}

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

.feature-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #cbd5e1;
}

.services-preview-split {
    display: flex;
}

.services-left,
.services-right {
    flex: 1;
}

.services-left {
    padding: 5rem 3rem;
    background: #f8fafc;
}

.services-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.services-left > p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2.5rem;
}

.service-highlight {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-highlight h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.service-highlight p {
    color: #475569;
    margin-bottom: 0.75rem;
}

.price-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.services-right {
    overflow: hidden;
}

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

.trust-section {
    background: #f8fafc;
    padding: 5rem 2rem;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.testimonials-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

.process-split {
    display: flex;
}

.process-left,
.process-right {
    flex: 1;
}

.process-left {
    overflow: hidden;
}

.process-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-right {
    padding: 5rem 3rem;
}

.process-right h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1e293b;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.step-content p {
    color: #475569;
}

.cta-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-banner-content h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-banner-content p {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
}

.cta-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #2563eb;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-white:hover {
    background: #f1f5f9;
    text-decoration: none;
    transform: translateY(-2px);
}

.form-split {
    display: flex;
    background: #f8fafc;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.form-left p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
}

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

.form-benefits li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #475569;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.form-right {
    padding: 5rem 3rem;
    background: #fff;
}

.contact-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    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: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.coverage-section {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.coverage-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.coverage-content p {
    font-size: 1.125rem;
    color: #475569;
}

.main-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1rem;
}

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

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

.footer-col ul li a {
    color: #cbd5e1;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #1d4ed8;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
}

.services-detail {
    background: #f8fafc;
}

.service-block-split {
    display: flex;
    background: #fff;
    margin-bottom: 3rem;
}

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

.service-block-left,
.service-block-right {
    flex: 1;
}

.service-block-left {
    overflow: hidden;
}

.service-block-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-block-right {
    padding: 4rem 3rem;
}

.service-block-split.reverse .service-block-left {
    padding: 4rem 3rem;
}

.service-block-split.reverse .service-block-right {
    padding: 0;
    overflow: hidden;
}

.service-block-split.reverse .service-block-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-block-right h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.service-block-right p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #475569;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #2563eb;
    font-weight: 700;
}

.service-price-box {
    background: #dbeafe;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.price-from {
    font-size: 0.875rem;
    color: #1e40af;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
}

.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-service:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.service-guarantee {
    background: #1e293b;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.guarantee-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.guarantee-content p {
    font-size: 1.125rem;
    color: #cbd5e1;
}

.about-story-split {
    display: flex;
}

.about-left,
.about-right {
    flex: 1;
}

.about-left {
    padding: 5rem 3rem;
}

.about-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-left p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.about-right {
    overflow: hidden;
}

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

.values-section {
    background: #f8fafc;
    padding: 5rem 2rem;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.25rem;
    color: #1e293b;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-item p {
    color: #475569;
}

.team-split {
    display: flex;
}

.team-left,
.team-right {
    flex: 1;
}

.team-left {
    overflow: hidden;
}

.team-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-right {
    padding: 5rem 3rem;
    background: #f8fafc;
}

.team-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.team-right p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.stats-section {
    background: #1e293b;
    color: #fff;
    padding: 5rem 2rem;
}

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

.stat-box {
    flex: 1 1 calc(25% - 2.25rem);
    min-width: 200px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #cbd5e1;
}

.approach-split {
    display: flex;
}

.approach-left,
.approach-right {
    flex: 1;
}

.approach-left {
    padding: 5rem 3rem;
}

.approach-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.approach-left p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.approach-right {
    overflow: hidden;
}

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

.cta-about {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left {
    padding: 5rem 3rem;
}

.contact-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.contact-info-block p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
}

.contact-right {
    overflow: hidden;
}

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

.contact-form-section {
    background: #f8fafc;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-form-container p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
}

.faq-section {
    background: #fff;
    padding: 5rem 2rem;
}

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

.faq-container h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1e293b;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.faq-item p {
    font-size: 1.125rem;
    color: #475569;
}

.thanks-section {
    background: #f8fafc;
    padding: 6rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.thanks-container > p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.thanks-details ul {
    list-style: none;
}

.thanks-details li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #475569;
}

.thanks-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.service-selected {
    background: #dbeafe;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    color: #1e40af;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #2563eb;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s;
}

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

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-updated {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.legal-container h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-container a {
    color: #2563eb;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .services-preview-split,
    .process-split,
    .form-split,
    .service-block-split,
    .service-block-split.reverse,
    .about-story-split,
    .team-split,
    .approach-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right,
    .services-left,
    .services-right,
    .process-left,
    .process-right,
    .form-left,
    .form-right,
    .service-block-left,
    .service-block-right,
    .about-left,
    .about-right,
    .team-left,
    .team-right,
    .approach-left,
    .approach-right,
    .contact-left,
    .contact-right {
        min-height: auto;
    }

    .hero-right,
    .intro-right,
    .services-right,
    .process-left,
    .about-right,
    .team-left,
    .approach-right,
    .contact-right,
    .service-block-left {
        min-height: 300px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .feature-card,
    .value-item {
        flex: 1 1 100%;
    }

    .testimonial-card,
    .stat-box {
        flex: 1 1 100%;
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }

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

    .sticky-cta a {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .hero-left,
    .intro-left,
    .services-left,
    .process-right,
    .form-left,
    .form-right,
    .service-block-right,
    .about-left,
    .team-right,
    .approach-left,
    .contact-left {
        padding: 3rem 1.5rem;
    }

    .service-block-split.reverse .service-block-left {
        padding: 3rem 1.5rem;
    }

    .why-us-section,
    .trust-section,
    .values-section,
    .stats-section,
    .cta-banner,
    .cta-about,
    .coverage-section,
    .service-guarantee,
    .contact-form-section,
    .faq-section {
        padding: 3rem 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
