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

:root {
    --primary-color: #2d5a8c;
    --secondary-color: #7a9cc6;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.96);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.hero-story {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 90, 140, 0.8), rgba(122, 156, 198, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    opacity: 0.95;
}

.curiosity-hook {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.opening-line {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.curiosity-hook p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-amplification {
    padding: 5rem 2rem;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text,
.split-image {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.story-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--primary-color);
}

.story-reveal p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.cta-inline {
    text-align: center;
    padding: 3rem 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    background: #c99560;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.insight-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.trust-builder {
    padding: 5rem 2rem;
}

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.visual-showcase {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.showcase-grid img {
    flex: 1;
    min-width: 280px;
    object-fit: cover;
    border-radius: 8px;
    height: 400px;
}

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

.cta-sticky.visible {
    display: block;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    padding-left: 3rem;
    position: relative;
}

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

.services-pricing {
    padding: 6rem 2rem;
    background: white;
}

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

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-image {
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

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

.service-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-light);
}

.price {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--accent-color) !important;
    padding: 0.5rem 1.5rem 1.5rem !important;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #234a73;
}

.order-form-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--bg-light), white);
}

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

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

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c99560;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.urgency-section {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: white;
}

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

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.urgency-note {
    font-style: italic;
    opacity: 0.9;
}

.final-cta-section {
    padding: 6rem 2rem;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.final-cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.page-header {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-content {
    padding: 5rem 2rem;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.values-list {
    list-style: none;
    margin: 2rem 0;
}

.values-list li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.team-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.team-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member .role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cta-section {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.services-intro {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-detail {
    padding: 5rem 2rem;
}

.service-full {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-image-large {
    flex: 1;
    min-width: 400px;
}

.service-image-large img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-info {
    flex: 1;
}

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

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

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

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    font-size: 1rem;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

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

.how-it-works {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.how-it-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

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

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

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-content {
    padding: 5rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-item {
    margin-bottom: 3rem;
}

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.contact-item .note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 90, 140, 0.9);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.visit-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.visit-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.visit-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.faq-item {
    background: 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 {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

.thanks-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    text-align: center;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: white;
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
}

.order-confirmation {
    padding: 5rem 2rem;
}

.confirmation-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.confirmation-box h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
}

.timeline {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

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

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.order-summary {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.order-summary h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.order-summary p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.order-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.thanks-extra {
    padding: 5rem 2rem;
    background: white;
}

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

.extra-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

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

.extra-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.link-arrow:hover {
    text-decoration: underline;
}

.thanks-testimonial {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

.thanks-testimonial blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
}

.thanks-contact {
    padding: 5rem 2rem;
    text-align: center;
}

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

.thanks-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.legal-header {
    padding: 10rem 2rem 3rem;
    background: var(--bg-light);
}

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

.updated {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    padding: 3rem 2rem 5rem;
}

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

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

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

.legal-content table td {
    font-size: 1rem;
}

.gdpr-table,
.cookies-table {
    font-size: 0.95rem;
}

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .showcase-grid img {
        height: 300px;
    }

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

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

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

    .page-header {
        padding: 8rem 2rem 3rem;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .service-full,
    .service-full.reverse {
        flex-direction: column;
    }

    .service-image-large {
        min-width: auto;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .steps {
        flex-direction: column;
    }

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

    .timeline-item {
        gap: 1rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-content table {
        font-size: 0.9rem;
    }

    .legal-content table th,
    .legal-content table td {
        padding: 0.5rem;
    }
}