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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2a7cc7;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #ddd;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
}

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);
}

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

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

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    padding: 8px 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-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a5490 0%, #2a7cc7 100%);
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

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

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

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
    color: white;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

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

.story-intro {
    padding: 80px 20px;
    background: white;
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.problem-amplify {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.split-visual {
    flex: 1;
}

.content-img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insight-reveal {
    padding: 100px 20px;
    background: white;
}

.insight-reveal h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-reveal p {
    font-size: 19px;
    margin-bottom: 20px;
}

.insight-box {
    margin-top: 50px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    text-align: center;
    color: white;
}

.box-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.box-desc {
    font-size: 20px;
    line-height: 1.5;
}

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

.btn-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-color);
    color: white;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 124, 199, 0.3);
    color: white;
}

.storytelling-case {
    padding: 100px 20px;
    background: white;
}

.storytelling-case h3 {
    font-size: 30px;
    margin-bottom: 25px;
}

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

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    margin: 30px 0;
    line-height: 1.6;
}

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

.solution-bridge {
    padding: 100px 20px;
    background: var(--bg-light);
}

.solution-bridge h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.steps-visual {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.step-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-signals {
    padding: 100px 20px;
    background: white;
}

.trust-signals h3 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 50px;
}

.stats-row {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.testimonials-inline {
    padding: 100px 20px;
    background: var(--bg-dark);
    color: white;
}

.testimonial-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.test-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.test-name {
    font-weight: 600;
    color: var(--accent-color);
}

.deeper-insight {
    padding: 100px 20px;
    background: white;
}

.deeper-insight h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.deeper-insight p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.emphasis-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-left: 5px solid var(--accent-color);
}

.insight-list {
    margin-top: 30px;
    padding-left: 20px;
}

.insight-list li {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.cta-section-mid {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-box-wide {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box-wide h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box-wide p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-cta-white {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.services-reveal {
    padding: 100px 20px;
    background: white;
}

.services-reveal h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-light);
}

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

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

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

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.urgency-final {
    padding: 80px 20px;
    background: white;
}

.urgency-final h3 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.urgency-final p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.urgency-calc {
    font-size: 20px;
    font-weight: 600;
    color: #c0392b;
    text-align: center;
    line-height: 2;
    margin-top: 30px;
}

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

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

.cta-box-dark h3 {
    font-size: 36px;
    color: white;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 22px 55px;
    background: var(--accent-color);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
    color: white;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-btn {
    display: block;
    padding: 18px 35px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px;
    z-index: 10000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.about-story {
    background: white;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

.quote-box {
    padding: 40px;
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    margin: 40px 0;
}

.quote-box p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
}

.about-mission {
    background: var(--bg-light);
}

.about-mission h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.mission-text {
    flex: 1;
}

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

.mission-visual {
    flex: 1;
}

.about-numbers {
    background: white;
}

.about-numbers h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.number-item {
    text-align: center;
    min-width: 250px;
}

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

.number-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

.about-approach {
    background: var(--bg-light);
}

.about-approach h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-approach > div > p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.about-team {
    background: white;
}

.about-team h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--bg-light);
    margin: 0 auto 25px;
    border: 5px solid var(--primary-color);
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.member-role {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-values {
    background: var(--bg-light);
}

.about-values h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.cta-about {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.cta-about h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

.services-intro {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

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

.services-full .service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.services-full .service-card h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.services-guarantee,
.services-process,
.services-faq {
    padding: 80px 20px;
}

.services-guarantee {
    background: white;
    text-align: center;
}

.services-guarantee h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.services-guarantee p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

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

.services-process h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.process-step h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-faq {
    background: white;
}

.services-faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-info {
    padding: 80px 20px;
    background: white;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

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

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

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 80px 40px;
    border-radius: 10px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-dark);
}

.map-address {
    margin-top: 15px;
    color: var(--text-light);
}

.contact-note-section,
.contact-cta,
.contact-faq {
    padding: 80px 20px;
}

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

.contact-note-section h3 {
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-note-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-note-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.contact-note-section li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-cta {
    background: white;
    text-align: center;
}

.contact-cta h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-faq {
    background: var(--bg-light);
}

.thanks-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--success-color), #229954);
    text-align: center;
    color: white;
}

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

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.thanks-lead {
    font-size: 20px;
    opacity: 0.95;
}

.thanks-content {
    padding: 80px 20px;
    background: white;
}

.thanks-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

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

.thanks-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-info-box p {
    font-size: 18px;
    line-height: 1.7;
}

.thanks-note h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.thanks-note ul {
    padding-left: 30px;
}

.thanks-note li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

.thanks-additional > div > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

.prep-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.prep-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

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

.prep-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-cta {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.thanks-cta h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.thanks-cta p {
    font-size: 18px;
}

.page-hero-legal {
    padding: 80px 20px 50px;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.page-hero-legal h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.legal-date {
    font-size: 16px;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 20px;
    background: white;
}

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

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-intro {
    font-size: 17px;
    font-style: italic;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .split-content,
    .mission-split,
    .contact-grid {
        flex-direction: column;
    }

    .stats-row,
    .steps-visual {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

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

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-num {
        margin: 0 auto;
    }

    .thanks-step {
        flex-direction: column;
        text-align: center;
    }

    .thanks-step .step-number {
        margin: 0 auto;
    }
}

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

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

    h2 {
        font-size: 28px;
    }

    .btn-large,
    .btn-cta-large {
        padding: 16px 35px;
        font-size: 16px;
    }

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