* {
    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: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --hover-color: #a68a4f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

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

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

.hero-narrative {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    margin-top: 4rem;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-narrative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23c9a961" opacity="0.05" width="1200" height="600"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-lead {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
}

.story-intro {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

.content-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.opening-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    font-style: italic;
}

.problem-amplification {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.problem-list {
    list-style: none;
    margin-top: 2rem;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.image-block {
    flex: 1;
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.visual-problem {
    background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
    opacity: 0.15;
}

.visual-transformation {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    opacity: 0.2;
}

.insight-reveal {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 2rem 0;
    font-weight: 400;
}

.cta-inline {
    margin-top: 2.5rem;
    text-align: center;
}

.transformation-story {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.story-text {
    flex: 1.2;
}

.story-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.testimonial-inline {
    background-color: white;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-author {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent-color);
}

.trust-building {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    color: white;
}

.trust-building h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 4rem;
    color: white;
}

.credentials-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.credential-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

.benefits-detailed {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.benefit-list {
    margin-top: 3rem;
}

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

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.social-proof {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.services-reveal {
    padding: 7rem 2rem;
    background-color: var(--bg-white);
}

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

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

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

.service-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.service-card.featured {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.service-card.featured h3,
.service-card.featured p {
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

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

.service-card.featured .price {
    color: var(--secondary-color);
}

.urgency-block {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
}

.urgency-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.urgency-content p {
    font-size: 1.15rem;
    opacity: 0.95;
}

.form-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: 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;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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(--secondary-color);
}

.btn-primary,
.btn-secondary,
.btn-select,
.btn-sticky {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

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

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

.btn-select {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    margin-top: 1rem;
}

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

.service-card.featured .btn-select {
    background-color: var(--secondary-color);
    color: white;
}

.service-card.featured .btn-select:hover {
    background-color: var(--hover-color);
}

.final-trust {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.final-trust h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.final-trust p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.btn-sticky {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 1.2rem 2rem;
}

.btn-sticky:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

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

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    margin-top: 4rem;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.about-story,
.values,
.team,
.process-section {
    padding: 5rem 2rem;
}

.about-story {
    background-color: var(--bg-white);
}

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

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

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

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

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.team {
    background-color: var(--bg-white);
}

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

.team p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.team-list {
    margin-top: 3rem;
}

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

.team-member:last-child {
    border-bottom: none;
}

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

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

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

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    margin: 0 0.5rem 0.5rem;
}

.cta-section .btn-secondary {
    margin: 0 0.5rem 0.5rem;
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: var(--accent-color);
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.service-detailed-item {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.service-detailed-item h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detailed-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detailed-item ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detailed-item li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    color: var(--text-light);
}

.service-time {
    font-weight: 600;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.featured-service {
    background-color: var(--primary-color);
    border-left-color: var(--secondary-color);
}

.featured-service h2,
.featured-service p,
.featured-service li,
.featured-service .service-time {
    color: white;
}

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

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

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
}

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

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

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

.contact-info {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

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

.contact-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

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

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.visit-section,
.location-section,
.faq-section {
    padding: 4rem 2rem;
}

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

.visit-section h2,
.location-section h2,
.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.visit-section p,
.location-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.transport-list {
    list-style: none;
    margin: 1.5rem 0;
}

.transport-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.transport-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.faq-item {
    margin-bottom: 2.5rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

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

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

.thanks-hero {
    margin-top: 4rem;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
    text-align: center;
    color: white;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: white;
    color: var(--success-color);
    font-size: 3rem;
    margin: 0 auto 2rem;
    font-weight: bold;
}

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

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

.next-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.selected-service {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-top: 2rem;
}

.selected-service span {
    font-weight: 700;
    color: var(--secondary-color);
}

.thanks-cta {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.legal-content {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

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

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

.legal-content li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

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

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

    .text-block h2 {
        font-size: 1.8rem;
    }

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

    .testimonials-carousel {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-cta {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .process-steps,
    .values-grid,
    .next-steps,
    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-narrative {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .opening-text {
        font-size: 1.15rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .sticky-cta {
        bottom: 1rem;
    }

    .btn-sticky {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}