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

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #0f766e;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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

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

.ad-notice {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.main-nav {
    background: var(--background);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

.hero-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-card {
    flex: 1;
}

.hero-text-card h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-text-card p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image-card {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-cards {
    padding: 80px 0;
    background: var(--background);
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: var(--background-alt);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.problem-insight {
    padding: 80px 0;
    background: var(--background-alt);
}

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

.content-card {
    flex: 1;
}

.content-card h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.content-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.image-card {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.services-preview {
    padding: 80px 0;
    background: var(--background);
}

.section-header-card {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-card h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header-card p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card-header {
    margin-bottom: 25px;
}

.service-card-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.select-service-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 14px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-building {
    padding: 80px 0;
    background: var(--background-alt);
}

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

.trust-text-card {
    flex: 1.5;
}

.trust-text-card h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.trust-text-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-card-group {
    flex: 1;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

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

.testimonials-section {
    padding: 80px 0;
    background: var(--background);
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--background-alt);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 5px;
}

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

.approach-section {
    padding: 80px 0;
    background: var(--background-alt);
}

.approach-card-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.approach-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 240px;
    background: white;
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    text-align: center;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.approach-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.form-section {
    padding: 80px 0;
    background: var(--background);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--background-alt);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro p {
    color: var(--text-medium);
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    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-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    color: var(--text-medium);
    font-size: 0.938rem;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.disclaimer-section {
    padding: 60px 0;
    background: #fef3c7;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.disclaimer-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.main-footer {
    background: var(--text-dark);
    color: #e5e7eb;
    padding: 60px 0 30px;
}

.footer-card-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-card p {
    color: #9ca3af;
    line-height: 1.7;
}

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

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

.footer-card a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-cta-content span {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.sticky-cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 100;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background: var(--border-color);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background: #d1d5db;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.938rem;
}

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

.page-hero-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero-card h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-hero-card p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.detailed-services {
    padding: 80px 0;
    background: var(--background);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1.2;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.premium-price {
    color: #7c3aed;
}

.service-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.service-detail-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-detail-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.service-detail-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-card-section {
    padding: 80px 0;
    background: var(--background-alt);
}

.comparison-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

.comparison-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.comparison-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.comparison-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.about-intro {
    padding: 80px 0;
    background: var(--background);
}

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

.about-image-card {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content-card {
    flex: 1;
}

.about-content-card h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-content-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background: var(--background-alt);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.story-section {
    padding: 80px 0;
    background: var(--background);
}

.story-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--background-alt);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.story-card h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    color: var(--text-dark);
    text-align: center;
}

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

.approach-difference {
    padding: 80px 0;
    background: var(--background-alt);
}

.difference-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.difference-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.difference-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.team-preview {
    padding: 80px 0;
    background: var(--background);
}

.team-intro-card {
    text-align: center;
    margin-bottom: 50px;
}

.team-intro-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro-card p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.expertise-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 280px;
    background: var(--background-alt);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

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

.cta-about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

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

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

.cta-about-card p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.cta-about-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-about-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-main {
    padding: 80px 0;
    background: var(--background);
}

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

.contact-info-card {
    flex: 1;
}

.contact-info-card h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.contact-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-note {
    background: var(--background-alt);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 40px;
}

.contact-note p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-map-card {
    flex: 1;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.directions-section {
    padding: 80px 0;
    background: var(--background-alt);
}

.directions-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.directions-card h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--text-dark);
    text-align: center;
}

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

.direction-item {
    flex: 1;
}

.direction-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.direction-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 0;
    background: var(--background);
}

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

.thanks-icon {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service-info {
    background: var(--background-alt);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 50px;
}

.selected-service-info strong {
    color: var(--text-dark);
}

.selected-service-info span {
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps-card {
    background: var(--background-alt);
    padding: 50px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    text-align: left;
}

.next-steps-card h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--text-dark);
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 25px;
}

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

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--border-color);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.thanks-note {
    background: #fef3c7;
    padding: 20px;
    border-radius: var(--radius-md);
}

.thanks-note p {
    color: var(--text-medium);
    font-size: 0.938rem;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
    background: var(--background);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-updated {
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.legal-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
    color: var(--text-medium);
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    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-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--background-alt);
    font-weight: 600;
    color: var(--text-dark);
}

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

@media (max-width: 968px) {
    .hero-content,
    .split-card-layout,
    .trust-card-layout,
    .service-detail-card,
    .about-card-layout,
    .contact-layout,
    .directions-grid {
        flex-direction: column;
    }

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

    .hero-text-card h1,
    .page-hero-card h1 {
        font-size: 2rem;
    }

    .card-grid-3,
    .services-card-grid,
    .testimonial-cards,
    .approach-cards,
    .values-card-grid,
    .difference-cards,
    .expertise-cards,
    .comparison-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 15px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-card,
    .page-hero-card,
    .intro-cards,
    .problem-insight,
    .services-preview,
    .trust-building,
    .testimonials-section,
    .approach-section,
    .form-section,
    .disclaimer-section,
    .detailed-services,
    .comparison-card-section,
    .about-intro,
    .values-section,
    .story-section,
    .approach-difference,
    .team-preview,
    .cta-about-section,
    .contact-main,
    .directions-section,
    .thanks-section,
    .legal-page {
        padding: 50px 0;
    }

    .form-card,
    .story-card,
    .directions-card {
        padding: 35px 25px;
    }

    .section-header-card h2,
    .section-title-centered {
        font-size: 2rem;
    }
}
