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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* Navigation */
.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
}

.nav-brand a {
    color: #1a365d;
}

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

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d3748;
}

.nav-cta {
    background: #3182ce;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #2c5aa0;
}

/* Hero Story Section */
.hero-story {
    position: relative;
    height: 70vh;
    min-height: 500px;
    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: white;
    max-width: 900px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
}

/* Intro Narrow Section */
.intro-narrow {
    padding: 80px 20px;
    background: #f7fafc;
}

.intro-text {
    font-size: 21px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 24px;
    font-weight: 300;
}

/* Problem Section */
.problem-section {
    padding: 100px 20px;
    background: white;
}

.problem-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.problem-item {
    flex: 1;
    min-width: 280px;
}

.problem-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

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

/* CTA Inline */
.cta-inline {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-text {
    font-size: 26px;
    color: white;
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-large {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 48px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Story Section */
.story-section {
    padding: 100px 20px;
    background: #f7fafc;
}

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

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a202c;
}

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

.story-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    padding: 20px;
    background: #edf2f7;
    border-left: 4px solid #3182ce;
    margin-top: 32px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.insight-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.insight-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.insight-number {
    font-size: 48px;
    font-weight: 800;
    color: #3182ce;
    min-width: 80px;
}

.insight-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

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

/* Trust Section */
.trust-section {
    padding: 100px 20px;
    background: #1a202c;
    color: white;
}

.trust-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.trust-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: #f7fafc;
}

.testimonials-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

.testimonial {
    background: white;
    padding: 40px;
    margin-bottom: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #3182ce;
}

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

.benefits-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-major {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
}

.benefit-major img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.benefit-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.6;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    padding: 32px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

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

/* CTA Urgency */
.cta-urgency {
    padding: 80px 20px;
    background: #fed7d7;
    text-align: center;
}

.cta-urgency h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #742a2a;
}

.cta-urgency p {
    font-size: 19px;
    line-height: 1.7;
    color: #742a2a;
    margin-bottom: 16px;
}

.urgency-highlight {
    font-size: 24px;
    font-weight: 600;
    color: #c53030;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: white;
}

.services-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #1a202c;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    padding: 40px;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border-color: #3182ce;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #3182ce;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-duration {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-bottom: 20px;
}

.service-price {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #2d3748;
}

.price-note {
    display: block;
    font-size: 14px;
    color: #e53e3e;
    margin-top: 4px;
    font-weight: 600;
}

.price-save {
    font-size: 14px;
    color: #38a169;
    font-weight: 600;
}

.btn-service {
    width: 100%;
    background: #3182ce;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #2c5aa0;
}

.btn-service.selected {
    background: #38a169;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: #f7fafc;
}

.form-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #1a202c;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 48px;
}

.booking-form {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.checkbox-group label {
    font-weight: 400;
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    background: #3182ce;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.final-cta p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

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

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

.sticky-cta-btn {
    display: block;
    background: #e53e3e;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(229, 62, 62, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(229, 62, 62, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    padding: 20px;
    z-index: 10000;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.btn-primary {
    background: #3182ce;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2c5aa0;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 10px 24px;
    border: 2px solid white;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Page Hero */
.page-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
}

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

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.highlight-text {
    font-size: 19px;
    font-weight: 600;
    color: #3182ce;
    padding: 20px;
    background: #ebf8ff;
    border-radius: 8px;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.mission-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #1a202c;
}

.mission-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #2d3748;
}

.team-section {
    padding: 100px 20px;
    background: white;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a202c;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2d3748;
}

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

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

.values-section {
    padding: 100px 20px;
    background: #f7fafc;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d3748;
}

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

.cta-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

/* Services Page Detail */
.services-detail {
    padding: 80px 20px;
}

.services-detail:nth-child(even) {
    background: #f7fafc;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-detail-lead {
    font-size: 20px;
    color: #3182ce;
    font-weight: 500;
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
}

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

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 700;
}

.service-detail-info {
    background: #f7fafc;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.info-item {
    margin-bottom: 12px;
    font-size: 17px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.featured-service {
    background: linear-gradient(135deg, #ebf8ff 0%, #f7fafc 100%);
    position: relative;
}

.featured-badge {
    display: inline-block;
    background: #3182ce;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.services-cta {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

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

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

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.contact-item a {
    color: #3182ce;
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
}

.contact-quick {
    padding: 80px 20px;
    background: #f7fafc;
    text-align: center;
}

.contact-quick h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-quick p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #1a202c;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #1a202c;
}

.thanks-lead {
    font-size: 20px;
    text-align: center;
    color: #4a5568;
    margin-bottom: 48px;
}

.thanks-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2d3748;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 24px;
    margin-bottom: 40px;
}

.thanks-steps li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a5568;
}

.selected-service-box {
    background: #ebf8ff;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
    margin: 32px 0;
}

.selected-service-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 8px;
}

.service-note {
    font-size: 15px;
    color: #4a5568;
}

.thanks-next {
    margin: 40px 0;
}

.thanks-next h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
}

.thanks-next p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.thanks-testimonial {
    padding: 80px 20px;
    background: #f7fafc;
}

.testimonial-quote {
    font-size: 22px;
    line-height: 1.8;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 24px;
}

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

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

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

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

.legal-content a {
    color: #3182ce;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookies-table th {
    background: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookies-table td {
    font-size: 15px;
    color: #4a5568;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-split,
    .content-split,
    .service-detail-card,
    .contact-grid {
        flex-direction: column;
    }

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

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

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

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

    .hero-lead {
        font-size: 18px;
    }

    .problem-grid,
    .trust-grid,
    .benefits-layout,
    .services-grid,
    .team-grid,
    .values-grid {
        flex-direction: column;
    }

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

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

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

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .thanks-content {
        padding: 40px 24px;
    }

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

    .booking-form {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .page-hero h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .hero-subtitle,
    .thanks-lead {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }
}