:root {
    --primary-color: #1a4d80;
    --secondary-color: #2c7ab5;
    --accent-color: #e85d35;
    --dark-bg: #0f2940;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

* {
    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: var(--text-dark);
    background-color: var(--white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: var(--accent-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left,
.hero-right {
    flex: 1;
    padding: 3rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 6%;
    padding-right: 4%;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-right {
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

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

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-select,
.btn-large,
.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 128, 0.3);
}

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

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

.btn-submit,
.btn-select {
    background-color: var(--accent-color);
    color: var(--white);
    width: 100%;
}

.btn-submit:hover,
.btn-select:hover {
    background-color: #d14d28;
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-large:hover {
    background-color: #d14d28;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(232, 93, 53, 0.3);
}

.insight-split,
.split-screen-modern,
.trust-split,
.problem-split,
.approach-split,
.values-split,
.about-content-split,
.contact-split,
.final-cta-split,
.thanks-info-split {
    display: flex;
    min-height: 60vh;
}

.insight-split.reverse,
.problem-split.reverse,
.values-split.reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-content,
.trust-content,
.trust-visual,
.approach-content,
.approach-visual,
.content-left,
.content-right,
.contact-info,
.contact-map,
.cta-left,
.cta-right,
.info-left,
.info-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image img,
.trust-visual img,
.approach-visual img,
.content-right img,
.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-image,
.trust-visual,
.approach-visual,
.content-right,
.contact-map {
    padding: 0;
}

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

.split-content p,
.trust-content p,
.approach-content p,
.content-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.services-showcase {
    padding: 6rem 3rem;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.trust-item strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonials-flow {
    padding: 6rem 3rem;
    background-color: var(--white);
}

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

.testimonial-cards {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 600;
}

.benefits-asymmetric {
    padding: 6rem 3rem;
    background-color: var(--dark-bg);
    color: var(--white);
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 2.8rem;
    color: var(--white);
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.benefit-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.benefit-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.urgency-section {
    padding: 6rem 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
}

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

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.urgency-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.form-section-split {
    display: flex;
    padding: 6rem 3rem;
    background-color: var(--light-bg);
    gap: 4rem;
}

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

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

.form-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.main-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-hint {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.final-cta-split {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6rem 4rem;
    align-items: center;
}

.cta-left h2 {
    color: var(--white);
}

.cta-left p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.cta-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

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

.sticky-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    font-weight: 600;
}

.sticky-btn:hover {
    background-color: #d14d28;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #d14d28;
}

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

.btn-reject:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.cookie-actions a {
    color: var(--white);
    text-decoration: underline;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
    background-color: var(--light-bg);
}

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

.service-detail-split {
    display: flex;
    margin-bottom: 6rem;
    gap: 3rem;
    align-items: center;
}

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

.service-info,
.service-visual {
    flex: 1;
}

.service-visual {
    display: flex;
    align-items: center;
}

.service-visual img {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

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

.service-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-info ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-info ul li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-comparison {
    padding: 6rem 3rem;
    background-color: var(--light-bg);
}

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

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

.comparison-scenario {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.comparison-scenario h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.comparison-scenario p {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.contact-note p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-alternatives {
    padding: 6rem 3rem;
    background-color: var(--white);
}

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

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

.alternative-option {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

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

.alternative-option p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.faq-contact {
    padding: 6rem 3rem;
    background-color: var(--light-bg);
}

.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 {
    background-color: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

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

.value-item p {
    color: var(--text-light);
}

.expertise-section {
    padding: 6rem 3rem;
    background-color: var(--white);
}

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

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

.expertise-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

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

.expertise-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-steps {
    margin-left: 1.5rem;
}

.process-steps li {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-steps strong {
    color: var(--primary-color);
}

.credentials-section {
    padding: 6rem 3rem;
    background-color: var(--light-bg);
    text-align: center;
}

.credentials-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.credentials-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero {
    padding: 6rem 3rem;
    background-color: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.selected-service-display h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

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

.thanks-next {
    text-align: left;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.next-steps {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.next-steps strong {
    color: var(--primary-color);
}

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

.thanks-info-split {
    padding: 4rem 3rem;
    background-color: var(--white);
    gap: 4rem;
}

.info-left h2,
.info-right h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-left p,
.info-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 4rem 3rem;
    background-color: var(--white);
}

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

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

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.legal-content li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .insight-split,
    .trust-split,
    .problem-split,
    .approach-split,
    .values-split,
    .about-content-split,
    .contact-split,
    .final-cta-split,
    .form-section-split,
    .service-detail-split,
    .page-hero-split,
    .thanks-info-split {
        flex-direction: column;
    }

    .insight-split.reverse,
    .problem-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .hero-left,
    .split-content,
    .trust-content,
    .approach-content {
        padding: 2rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-cards {
        flex-direction: column;
    }

    .benefits-layout {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-menu {
        font-size: 0.9rem;
        gap: 0.7rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .split-content h2,
    .trust-content h2 {
        font-size: 1.8rem;
    }
}
