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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #f8f9fa;
    --background-dark: #34495e;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --error-color: #e74c3c;
}

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

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 12px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        display: none;
        width: 90%;
        max-width: 300px;
    }

    .nav-menu.active {
        display: flex;
    }
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

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

.story-intro {
    padding: 120px 20px;
    background: var(--white);
}

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

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.inline-cta-block {
    text-align: center;
    padding: 60px 20px;
    background: var(--background-light);
}

.cta-inline {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

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

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

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

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

.problem-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: 700;
}

.emphasis-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 30px;
}

.split-image {
    flex: 1;
}

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

@media (max-width: 968px) {
    .split-layout {
        flex-direction: column;
    }
}

.insight-section {
    padding: 120px 20px;
    background: var(--background-dark);
    color: var(--white);
}

.center-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.insight-section p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 15px;
    margin: 50px 0;
    border-left: 5px solid var(--secondary-color);
}

.big-quote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.5;
    font-weight: 300;
}

.visual-break {
    height: 500px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 120px 20px;
    background: var(--white);
}

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

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

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

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

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

.benefits-reveal {
    padding: 120px 20px;
    background: var(--background-light);
}

.benefits-flow {
    margin-top: 60px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

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

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

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

.how-it-works {
    padding: 120px 20px;
    background: var(--white);
}

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

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

.steps-layout {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

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

.popular-hobbies {
    padding: 120px 20px;
    background: var(--background-dark);
    color: var(--white);
}

.popular-hobbies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.hobby-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    color: var(--text-dark);
}

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

.hobby-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.hobby-card p {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: var(--text-light);
}

.cta-mid-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-box {
    text-align: center;
    color: var(--white);
}

.cta-box h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-pricing {
    padding: 120px 20px;
    background: var(--white);
}

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

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

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.price-card {
    flex: 1;
    min-width: 280px;
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.price-card.featured {
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.1), rgba(230, 126, 34, 0.1));
    border-color: var(--secondary-color);
}

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

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.price-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

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

.price-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

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

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

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

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

.urgency-box {
    background: #fff3cd;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #ffc107;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.urgency-note {
    font-style: italic;
    font-weight: 600;
    color: #d35400;
}

.form-section {
    padding: 120px 20px;
    background: var(--white);
}

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

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

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

.main-form {
    background: var(--background-light);
    padding: 50px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

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

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

.final-cta {
    padding: 120px 20px;
    background: var(--background-dark);
    color: var(--white);
}

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

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

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

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

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

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

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

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

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

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

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

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

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

.sticky-btn:hover {
    transform: translateY(-3px);
}

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

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

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

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

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

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

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

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

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

.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.about-story {
    padding: 100px 20px;
    background: var(--white);
}

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

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.mission-card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

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

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

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

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

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

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

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
}

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

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

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

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

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

.cta-about {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

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

.cta-about p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.service-block {
    background: var(--background-light);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
}

.featured-service {
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.1), rgba(230, 126, 34, 0.1));
    border: 2px solid var(--secondary-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.service-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-description {
    flex: 3;
    min-width: 300px;
}

.service-description h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-dark);
}

.service-action {
    flex: 1;
    min-width: 200px;
}

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

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

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

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

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

.comparison-table tr:nth-child(even) {
    background: var(--background-light);
}

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

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

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

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

.contact-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

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

.contact-details {
    padding: 80px 20px;
    background: var(--background-light);
}

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

.faq-section {
    margin-top: 60px;
}

.faq-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.visit-us {
    padding: 80px 20px;
    background: var(--white);
}

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

.visit-us p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.directions {
    max-width: 700px;
    margin: 0 auto;
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
}

.directions ul {
    margin-left: 20px;
    margin-top: 20px;
}

.directions li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-section {
    padding: 150px 20px;
    background: var(--background-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

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

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

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

.thanks-details {
    margin-bottom: 40px;
}

.selected-service {
    font-size: 1.2rem;
    color: var(--text-dark);
    background: var(--background-light);
    padding: 20px;
    border-radius: 10px;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 50px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.social-share {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.social-share p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 25px;
    background: var(--background-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.share-btn:hover {
    background: var(--border-color);
}

.legal-page {
    padding: 150px 20px 80px;
    background: var(--white);
}

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

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 50px;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

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

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

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .center-title,
    .services-pricing h2 {
        font-size: 2rem;
    }

    .thanks-container {
        padding: 50px 30px;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 3rem;
    }
}
