/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a66b;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --background-light: #f8f6f3;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

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

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

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

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

/* Navigation */
.main-nav {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

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

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
}

.hero-content {
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons and CTAs */
.cta-primary,
.cta-primary-large,
.cta-urgent,
.cta-inline,
.btn-primary,
.btn-submit {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.cta-primary:hover,
.btn-primary:hover,
.btn-submit:hover {
    background: #75604a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-primary-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.cta-urgent {
    background: var(--error-color);
}

.cta-urgent:hover {
    background: #c0392b;
}

.cta-inline {
    padding: 0;
    background: none;
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
}

.cta-inline:hover {
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.btn-select-service:hover {
    background: #d4b57a;
    transform: translateY(-2px);
}

/* Story Section */
.story-section {
    padding: 80px 20px;
    background: white;
}

.story-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

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

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: var(--background-light);
}

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

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

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

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

/* Insight Section */
.insight-section {
    padding: 80px 20px;
    background: white;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-image img {
    border-radius: 10px;
    width: 100%;
}

.insight-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

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

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

/* Testimonials */
.testimonial-section {
    padding: 80px 20px;
    background: var(--background-light);
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: white;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.benefit-row.reverse {
    flex-direction: column;
}

.benefit-visual img {
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
}

.benefit-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

/* Services Section */
.services-preview {
    padding: 80px 20px;
    background: var(--background-light);
}

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.05rem;
}

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

.service-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

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

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

/* Urgency Section */
.urgency-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--error-color), #c0392b);
    color: white;
}

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

.urgency-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 30px 0;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: white;
}

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

.form-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

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

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 20px 20px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

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

.sticky-cta-button {
    padding: 15px 25px;
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: block;
}

.sticky-cta-button:hover {
    background: #75604a;
    transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About Page Styles */
.about-intro {
    padding: 80px 20px;
    background: white;
}

.about-content-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.about-image img {
    border-radius: 10px;
}

/* Timeline */
.timeline-section {
    padding: 80px 20px;
    background: var(--background-light);
}

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

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: white;
}

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

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

.value-card {
    padding: 30px;
    background: var(--background-light);
    border-radius: 10px;
}

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

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

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: var(--background-light);
}

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

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

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

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

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

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: white;
}

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

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
}

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

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

/* Services Detailed */
.services-main {
    padding: 40px 20px 80px;
    background: white;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detailed {
    background: var(--background-light);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.service-detailed.featured-service {
    border: 3px solid var(--accent-color);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.service-header {
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-title-block h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-tagline {
    color: var(--text-light);
    font-style: italic;
}

.service-price-block {
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

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

.price-save {
    font-size: 0.9rem;
    color: var(--success-color);
    margin-top: 5px;
}

.service-body {
    padding: 30px;
    background: white;
    margin: 2px;
    border-radius: 0 0 13px 13px;
}

.service-description {
    margin-bottom: 30px;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-includes,
.service-specs {
    margin-bottom: 30px;
}

.service-includes h4,
.service-specs h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-includes ul,
.service-specs ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-includes li,
.service-specs li {
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-specs li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Contact Page */
.contact-main {
    padding: 40px 20px 80px;
    background: white;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info h2,
.contact-map h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 35px;
}

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

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

.info-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.map-placeholder {
    background: var(--background-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.map-info {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.map-info h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.map-info ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-info li {
    color: var(--text-light);
    line-height: 1.7;
}

/* Visit Section */
.visit-section {
    padding: 80px 20px;
    background: var(--background-light);
}

.visit-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.visit-content > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.visit-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.visit-benefit {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.visit-benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.visit-benefit p {
    color: var(--text-light);
    line-height: 1.7;
}

.appointment-cta {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.appointment-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.appointment-cta ul {
    margin: 20px 0;
}

.appointment-cta li {
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 60px 20px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.newsletter-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

.newsletter-note a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 20px;
    background: white;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.submission-details {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: left;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

.step .step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

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

.thanks-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Explore Section */
.explore-section {
    padding: 80px 20px;
    background: var(--background-light);
}

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

.explore-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.explore-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
}

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

.explore-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.link-arrow:hover {
    color: var(--primary-color);
}

/* Social Proof */
.social-proof {
    padding: 80px 20px;
    background: white;
}

.social-proof h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: var(--background-light);
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: var(--background-light);
}

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

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

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

/* Guarantee Section */
.guarantee-section {
    padding: 60px 20px;
    background: var(--primary-color);
    color: white;
}

.guarantee-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

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

.guarantee-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Legal Pages */
.legal-page {
    padding: 40px 20px 80px;
    background: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.legal-content {
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    color: var(--text-light);
    list-style: disc;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

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

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        gap: 40px;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        min-height: 700px;
    }

    .hero-content {
        padding: 60px 40px;
        text-align: left;
        flex: 1;
    }

    .hero-image {
        flex: 1;
        padding: 40px;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 1 1 calc(50% - 15px);
    }

    .insight-container {
        flex-direction: row;
        align-items: center;
    }

    .insight-image,
    .insight-content {
        flex: 1;
    }

    .trust-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1 1 calc(50% - 20px);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 15px);
    }

    .benefit-row {
        flex-direction: row;
        align-items: center;
    }

    .benefit-row.reverse {
        flex-direction: row-reverse;
    }

    .benefit-visual,
    .benefit-text {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .about-content-split {
        flex-direction: row;
        align-items: center;
    }

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

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 20px);
    }

    .contact-layout {
        flex-direction: row;
        gap: 60px;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .visit-benefits {
        flex-direction: row;
    }

    .visit-benefit {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 15px);
    }

    .steps-grid {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }

    .explore-grid {
        flex-direction: row;
    }

    .explore-card {
        flex: 1;
    }

    .stats-grid {
        flex-direction: row;
    }

    .stat {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .problem-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .feature-item {
        flex: 1 1 calc(25% - 30px);
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .values-grid {
        flex-direction: row;
    }

    .value-card {
        flex: 1 1 calc(25% - 23px);
    }

    .team-grid {
        flex-direction: row;
    }

    .team-member {
        flex: 1 1 calc(25% - 23px);
    }

    .process-steps {
        flex-direction: row;
    }

    .process-step {
        flex: 1 1 calc(33.333% - 27px);
    }

    .faq-grid {
        flex-direction: row;
    }

    .faq-item {
        flex: 1 1 calc(50% - 15px);
    }

    .stats-grid {
        flex-direction: row;
    }

    .stat {
        flex: 1 1 25%;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}
