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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #48bb78;
    color: white;
}

.cookie-btn.accept:hover {
    background: #38a169;
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #667eea;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background: #f7fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.hero-right {
    background: #667eea;
}

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

.intro-asymmetric {
    padding: 80px 40px;
    background: #ffffff;
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text-wide {
    flex: 2;
}

.intro-text-wide h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-text-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 16px;
    color: #718096;
    margin-top: 8px;
}

.story-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

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

.story-left-narrow {
    flex: 1;
}

.story-right-wide {
    flex: 1.5;
}

.story-right-wide h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.story-right-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.inline-cta {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #5568d3;
    transform: translateX(4px);
}

.problem-amplify {
    padding: 100px 40px;
    background: #1a202c;
    color: white;
}

.problem-content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-content-centered h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.problem-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
}

.problem-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #f093fb;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e0;
}

.insight-reveal {
    padding: 100px 40px;
    background: #ffffff;
}

.insight-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.insight-left,
.insight-right {
    flex: 1;
}

.insight-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
}

.insight-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.insight-box {
    background: #f7fafc;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.insight-box h5 {
    font-size: 22px;
    margin-bottom: 24px;
    color: #1a202c;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.insight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.services-showcase {
    padding: 100px 40px;
    background: #f7fafc;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.services-subhead {
    font-size: 20px;
    color: #718096;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.service-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

.service-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.select-service-btn {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.testimonials-flow {
    padding: 100px 40px;
    background: #ffffff;
}

.testimonials-flow h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f7fafc;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #718096;
    font-weight: 600;
}

.urgency-block {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

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

.urgency-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.urgency-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.urgency-highlight {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 32px;
}

.cta-urgent {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: #f5576c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
    text-align: center;
}

.form-lead {
    font-size: 18px;
    color: #718096;
    text-align: center;
    margin-bottom: 40px;
}

.main-form {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: #48bb78;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #38a169;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(72, 187, 120, 0.5);
}

.footer {
    background: #1a202c;
    color: white;
    padding: 60px 40px 20px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #718096;
}

.about-hero,
.services-page-hero,
.contact-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-lead,
.services-hero-lead,
.contact-lead {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 40px;
    background: #ffffff;
}

.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-story-text {
    flex: 1;
}

.about-story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-story-image {
    flex: 1;
}

.about-mission {
    padding: 80px 40px;
    background: #f7fafc;
    text-align: center;
}

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

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
}

.mission-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.about-values {
    padding: 100px 40px;
    background: #ffffff;
}

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

.values-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #667eea;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.about-team {
    padding: 100px 40px;
    background: #f7fafc;
}

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

.team-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 60px;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.team-photo {
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a202c;
}

.team-role {
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.about-results {
    padding: 100px 40px;
    background: #1a202c;
    color: white;
}

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

.results-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.result-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
}

.result-label {
    font-size: 18px;
    color: #cbd5e0;
}

.about-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    color: white;
}

.about-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-cta-content p {
    font-size: 22px;
    margin-bottom: 32px;
}

.services-detail {
    padding: 100px 40px;
    background: #f7fafc;
}

.services-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-detail-container > h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.service-detail-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.featured-detail {
    border: 3px solid #667eea;
}

.vip-card {
    background: linear-gradient(135deg, #f7fafc 0%, #e6fffa 100%);
    border: 3px solid #48bb78;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.service-detail-header h3 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 12px;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
}

.service-detail-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-detail-body h4 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #1a202c;
}

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

.service-detail-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.service-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 18px;
}

.services-guarantee {
    padding: 80px 40px;
    background: #48bb78;
    color: white;
    text-align: center;
}

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

.guarantee-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.guarantee-content p {
    font-size: 20px;
    line-height: 1.7;
}

.services-faq {
    padding: 100px 40px;
    background: #ffffff;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background: #f7fafc;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.services-cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.services-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 22px;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.cta-secondary:hover {
    background: #667eea;
    color: white;
}

.contact-main {
    padding: 100px 40px;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

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

.contact-cta-side {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a202c;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-block a {
    color: #667eea;
    text-decoration: none;
}

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

.contact-box {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.contact-box h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.contact-box-alt {
    background: #fff5f5;
    border-left: 4px solid #f5576c;
}

.contact-faq {
    padding: 100px 40px;
    background: #f7fafc;
}

.contact-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-faq-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item-contact {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item-contact h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item-contact p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.contact-final-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-final-content p {
    font-size: 20px;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
    background: #f7fafc;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: white;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-lead {
    font-size: 20px;
    color: #718096;
    margin-bottom: 48px;
}

.thanks-content {
    text-align: left;
}

.thanks-content h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a202c;
    text-align: center;
}

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

.thanks-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #667eea;
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a202c;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-service-info {
    margin: 40px 0;
}

.service-confirmation {
    background: #f0fff4;
    border: 2px solid #48bb78;
    padding: 32px;
    border-radius: 8px;
}

.service-confirmation h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-confirmation p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thanks-note {
    background: #fffaf0;
    border-left: 4px solid #f5a623;
    padding: 20px;
    border-radius: 4px;
    margin-top: 32px;
}

.thanks-note p {
    font-size: 15px;
    color: #4a5568;
    margin: 0;
}

.legal-page {
    padding: 100px 40px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-updated {
    font-size: 16px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.legal-container ul,
.legal-container ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.legal-container a {
    color: #667eea;
    text-decoration: none;
}

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

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

    .hero-left {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .intro-asymmetric,
    .story-container,
    .insight-split,
    .about-story-container,
    .contact-container {
        flex-direction: column;
    }

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

    .nav-split {
        padding: 20px;
    }

    .nav-right {
        gap: 16px;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

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

    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 32px;
    }

    .thanks-container {
        padding: 40px 20px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }

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

    .cta-secondary {
        margin-left: 0;
        margin-top: 16px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-detail-header h3 {
        font-size: 24px;
    }

    .service-detail-price {
        font-size: 28px;
    }
}