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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

.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(--bg-white);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--accent-color);
}

.hero-story {
    position: relative;
    height: 85vh;
    margin-top: 70px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

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

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

section {
    padding: 5rem 0;
}

.hook-section {
    background: var(--bg-light);
    text-align: center;
}

.hook-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.story-reveal {
    padding: 6rem 0;
}

.story-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.story-image {
    flex: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.problem-amplify {
    background: var(--primary-color);
    color: var(--bg-white);
}

.problem-amplify h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.problem-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.problem-item p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.problem-conclusion {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.insight-section {
    background: var(--bg-light);
    text-align: center;
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.insight-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.insight-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.insight-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.insight-container p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.insight-reveal {
    font-size: 1.35rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

.visual-break {
    padding: 0;
}

.fullwidth-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.trust-building h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-flow {
    background: var(--bg-light);
}

.testimonial {
    background: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 2.5rem;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

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

.benefits-flex {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-large {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.benefit-large img {
    flex: 1;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.benefit-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.how-it-works {
    background: var(--bg-light);
}

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

.steps {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-mid {
    background: var(--secondary-color);
    padding: 4rem 0;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-box h3 {
    font-size: 2.2rem;
    color: var(--bg-white);
    margin-bottom: 2rem;
    font-weight: 700;
}

.btn-large {
    background: var(--bg-white);
    color: var(--secondary-color);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.pricing-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.pricing-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.price-card.premium {
    background: linear-gradient(135deg, #f9f7f4 0%, #e8e4df 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.price-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.price-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.btn-select {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s;
}

.btn-select:hover {
    background: var(--accent-color);
}

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

.urgency-box {
    background: var(--bg-white);
    border-left: 5px solid var(--secondary-color);
    padding: 2.5rem;
    border-radius: 4px;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.urgency-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.final-trust h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-icons {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 60px;
    margin-bottom: 1rem;
}

.trust-icon-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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 {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--accent-color);
}

.social-proof-final {
    background: var(--primary-color);
    color: var(--bg-white);
}

.social-proof-final h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.stats {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

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

.sticky-cta button {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column a {
    display: block;
    color: var(--bg-white);
    text-decoration: none;
    margin-bottom: 0.7rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 1rem;
}

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

.btn-accept,
.btn-reject {
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

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

.page-hero {
    margin-top: 70px;
    background: var(--bg-light);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-story h3 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-story p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-story img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 2rem 0;
}

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

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

.values-grid {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.team-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.team-grid {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-section {
    background: var(--secondary-color);
    padding: 4rem 0;
}

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

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

.services-detailed {
    padding: 5rem 0;
}

.service-detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

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

.service-image {
    flex: 1;
}

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

.service-content {
    flex: 1;
}

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

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

.service-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.btn-service {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s;
    margin-top: 1rem;
}

.btn-service:hover {
    background: var(--accent-color);
}

.contact-info {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.map-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.map-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.map-placeholder {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.3rem;
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.thanks-section {
    padding: 8rem 2rem;
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 4rem;
    line-height: 100px;
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.btn-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

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

.next-steps {
    background: var(--bg-white);
}

.legal-content {
    padding: 5rem 0;
}

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

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

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

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

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

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

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .floating-nav {
        padding: 1rem;
    }

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

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

    .story-content {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-grid,
    .values-grid,
    .contact-grid {
        flex-direction: column;
    }

    .benefit-large {
        flex-direction: column;
    }

    .steps {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}