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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004a99;
    --secondary-color: #00cc66;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #757575;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
}

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

a:hover {
    color: var(--primary-dark);
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 204, 102, 0.4);
    color: white;
}

.hero-visual-first {
    margin-top: 60px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px;
    color: white;
}

.hero-content-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-hero-ghost {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid white;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

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

.intro-curiosity {
    padding: 80px 20px;
    background: var(--bg-light);
}

.intro-lead {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 500;
}

.intro-curiosity p {
    font-size: 19px;
    margin-bottom: 20px;
}

.inline-cta {
    margin-top: 40px;
}

.link-arrow {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.problem-amplification {
    padding: 80px 20px;
}

.container-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

.problem-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.text-emphasis {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.myth-breaker {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.card-myth {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.myth-reality {
    font-size: 16px;
    line-height: 1.7;
}

.myth-reality strong {
    color: var(--secondary-color);
}

.section-cta-center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

.story-scenario {
    padding: 80px 20px;
}

.story-scenario h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.timeline-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.7;
}

.insight-reveal {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.insight-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.insight-subtitle {
    font-size: 20px;
    color: var(--text-muted);
}

.comparison-table {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.comparison-column {
    flex: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.column-header {
    padding: 25px;
    text-align: center;
    color: white;
}

.column-header h3 {
    font-size: 24px;
}

.column-ev {
    background: var(--secondary-color);
}

.column-gas {
    background: var(--text-muted);
}

.cost-items {
    padding: 30px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cost-label {
    font-size: 16px;
}

.cost-value {
    font-weight: 600;
    font-size: 18px;
}

.cost-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 3px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cost-total-higher {
    border-top: 3px solid #cc0000;
}

.total-label {
    font-weight: 700;
    font-size: 18px;
}

.total-value {
    font-weight: 800;
    font-size: 26px;
    color: var(--primary-color);
}

.savings-highlight {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.savings-text {
    font-size: 24px;
}

.savings-number {
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 800;
}

.trust-building {
    padding: 80px 20px;
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 50px;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.author-info strong {
    display: block;
    font-size: 17px;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 15px;
}

.benefits-reveal {
    padding: 80px 20px;
    background: var(--bg-light);
}

.benefits-reveal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-large {
    flex: 1 1 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.benefit-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.benefit-text {
    padding: 35px;
}

.benefit-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.7;
}

.benefit-medium {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-medium h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-medium p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefit-medium img {
    width: 100%;
    border-radius: 5px;
}

.benefit-small {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-small h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-small p {
    font-size: 16px;
    line-height: 1.6;
}

.services-pricing {
    padding: 80px 20px;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    color: var(--text-light);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.service-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-dark);
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

.urgency-box {
    text-align: center;
}

.urgency-box h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.urgency-box p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.urgency-stat {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.urgency-warning {
    font-size: 24px;
    margin: 30px 0;
}

.urgency-cta {
    margin-top: 40px;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background: white;
    color: #ff6b6b;
    font-size: 20px;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.final-trust {
    padding: 80px 20px;
    background: var(--bg-light);
}

.trust-elements {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 16px;
    color: var(--text-muted);
}

.form-section {
    padding: 80px 20px;
}

.form-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.main-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.form-group-checkbox input {
    margin-top: 5px;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 14px;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    opacity: 0.95;
}

.about-story,
.values-section,
.team-section,
.numbers-section,
.mission-section {
    padding: 60px 20px;
}

.story-content h2,
.values-section h2,
.team-section h2,
.numbers-section h2,
.mission-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.number-box {
    flex: 1 1 calc(25% - 25px);
    min-width: 200px;
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.big-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.number-box p {
    font-size: 16px;
    color: var(--text-muted);
}

.mission-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.cta-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-light);
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-highlight {
    border: 2px solid var(--primary-color);
}

.service-premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-badge-top {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    flex: 1;
}

.service-price-big {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-original {
    display: block;
    font-size: 22px;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 24px;
    margin: 30px 0 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.service-savings {
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
    font-size: 20px;
}

.faq-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

.contact-grid {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-note {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
}

.map-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.map-placeholder {
    background: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-placeholder p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page {
    margin-top: 60px;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.legal-updated {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 15px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: var(--shadow);
}

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

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

.thanks-section {
    margin-top: 60px;
    padding: 80px 20px;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-light);
}

.service-selected {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    margin: 30px 0;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    background: var(--bg-light);
    padding: 30px 40px;
    border-radius: 8px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

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

.team-intro {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-content-overlay h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .container-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .comparison-table {
        flex-direction: column;
    }

    .testimonials-scroll {
        gap: 20px;
    }

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

    .benefit-medium,
    .benefit-small {
        flex: 1 1 100%;
    }

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

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

    .trust-elements {
        flex-direction: column;
        gap: 30px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 12px 20px;
        font-size: 14px;
    }

    .main-form {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail {
        padding: 25px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .values-grid {
        flex-direction: column;
    }

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

    .numbers-grid {
        flex-direction: column;
    }

    .number-box {
        flex: 1 1 100%;
    }

    .thanks-cta {
        flex-direction: column;
    }

    .section-title-center,
    .section-title-left {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-content-overlay h1 {
        font-size: 28px;
    }

    .intro-lead {
        font-size: 20px;
    }

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

    .form-title {
        font-size: 32px;
    }

    .thanks-box h1 {
        font-size: 32px;
    }
}