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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

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

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

.nav-cta {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

.intro-hook {
    padding: 100px 20px;
    background: var(--white);
}

.intro-hook h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-hook p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.visual-story {
    display: flex;
    align-items: center;
    min-height: 600px;
    background: var(--bg-light);
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.story-text {
    flex: 1;
    padding: 60px;
}

.story-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-section {
    padding: 100px 20px;
    background: var(--white);
}

.problem-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.problem-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
}

.problem-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 30px;
}

.btn-large {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

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

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.benefits-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.visual-showcase {
    padding: 0;
}

.showcase-grid {
    display: flex;
    height: 400px;
}

.showcase-item {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: flex 0.5s;
}

.showcase-item:hover {
    flex: 1.5;
}

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

.testimonials h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.process-section {
    padding: 100px 20px;
    background: var(--white);
}

.process-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.trust-builders {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.trust-builders h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-preview {
    padding: 100px 20px;
    background: var(--white);
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 25px 15px;
    color: var(--text-light);
}

.price-tag {
    padding: 0 25px 25px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.urgency-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #d35400);
    text-align: center;
}

.urgency-content h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.urgency-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-urgent {
    background: var(--white);
    color: var(--secondary-color);
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-urgent:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

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

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

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

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.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: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.final-cta {
    padding: 120px 20px;
    background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.final-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.final-cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
}

.btn-large-white {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-large-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.site-footer {
    background: var(--primary-color);
    color: var(--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: 250px;
}

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

.footer-col p {
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.8;
}

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

.sticky-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

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

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

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

.page-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.about-intro,
.services-intro,
.contact-content {
    padding: 80px 20px;
}

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

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

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-showcase {
    padding: 80px 20px;
    background: var(--white);
}

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

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

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-member p {
    color: var(--text-light);
}

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

.timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.timeline-items {
    position: relative;
}

.timeline-item {
    margin-bottom: 40px;
    padding-left: 80px;
    position: relative;
}

.year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.timeline-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.mission-section {
    padding: 80px 20px;
    background: var(--white);
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.cta-about {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
}

.cta-about .cta-content h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-about .cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

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

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

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-service {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

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

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

.included-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.included-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
}

.included-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.payment-options {
    padding: 80px 20px;
    background: var(--white);
}

.payment-options h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.payment-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.payment-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.payment-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.services-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    text-align: center;
}

.contact-info-section {
    padding: 40px 0;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 5px;
}

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

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

.contact-map {
    height: 400px;
    background: var(--bg-light);
    margin: 60px 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    position: relative;
}

.map-overlay {
    text-align: center;
    color: var(--white);
}

.map-overlay p {
    font-size: 1.3rem;
    margin: 10px 0;
}

.contact-cta {
    padding: 80px 20px;
    background: var(--white);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 100px 20px;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-detail {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 15px;
}

.next-steps {
    padding: 80px 20px;
    background: var(--white);
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.next-step {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.next-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.next-step p {
    color: var(--text-light);
}

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

.thanks-cta .cta-content h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}

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

.legal-content {
    padding: 100px 20px;
    background: var(--white);
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .visual-story {
        flex-direction: column;
    }

    .story-text {
        padding: 40px 20px;
    }

    .problem-grid,
    .testimonial-cards,
    .process-steps,
    .trust-points,
    .services-grid,
    .values-grid,
    .team-grid,
    .contact-details,
    .steps-grid {
        flex-direction: column;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

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

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

    .showcase-grid {
        flex-direction: column;
        height: auto;
    }

    .showcase-item {
        height: 250px;
    }
}
