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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

.cookie-accept {
    background-color: #2563eb;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #1d4ed8;
}

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

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

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

.nav-links a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 11px;
    color: #64748b;
    font-style: italic;
    padding: 4px 12px;
    background-color: #f1f5f9;
    border-radius: 12px;
}

.hero-visual {
    width: 100%;
    min-height: 90vh;
    position: relative;
}

.hero-image-overlay {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-text-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text-overlay p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
}

.intro-story {
    padding: 120px 24px;
    background-color: #fff;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

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

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.visual-break {
    padding: 0;
}

.image-split {
    display: flex;
    flex-wrap: wrap;
}

.image-split img {
    width: 50%;
    min-width: 400px;
    flex: 1;
}

.split-text {
    width: 50%;
    min-width: 400px;
    flex: 1;
    padding: 80px 60px;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
}

.problem-awareness {
    padding: 100px 24px;
    background-color: #fafafa;
}

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

.content-centered h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1e293b;
    text-align: center;
}

.content-centered p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.insight-box {
    background-color: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 32px;
    margin-top: 40px;
}

.insight-box p {
    margin: 0;
    font-size: 18px;
    color: #1e40af;
}

.services-overview {
    padding: 100px 24px;
    background-color: #fff;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.content-wide h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1e293b;
    text-align: center;
}

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

.service-card-visual {
    flex: 1;
    min-width: 340px;
    max-width: 420px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 32px;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #1d4ed8;
}

.trust-building {
    padding: 100px 24px;
    background-color: #f8fafc;
}

.testimonial-inline {
    background-color: #fff;
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid #10b981;
    border-radius: 4px;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.7;
    color: #1e293b;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    margin-top: 12px;
    font-style: normal;
}

.form-section {
    padding: 100px 24px;
    background-color: #fff;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input[readonly] {
    background-color: #f1f5f9;
}

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1d4ed8;
}

.final-visual {
    width: 100%;
}

.image-background {
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    position: relative;
}

.image-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.overlay-cta {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 700px;
}

.overlay-cta h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.overlay-cta p {
    font-size: 20px;
    line-height: 1.6;
}

.main-footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 60px 24px 24px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

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

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

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

.page-header {
    width: 100%;
}

.header-overlay {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.header-overlay h1 {
    position: relative;
    z-index: 10;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}

.about-story {
    padding: 100px 24px;
    background-color: #fff;
}

.values-section {
    padding: 100px 24px;
    background-color: #f8fafc;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

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

.team-approach {
    padding: 100px 24px;
    background-color: #fff;
}

.approach-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.approach-image {
    flex: 1;
    min-width: 400px;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.approach-text {
    flex: 1;
    min-width: 400px;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.commitment-section {
    padding: 100px 24px;
    background-color: #fafafa;
}

.services-detailed {
    padding: 80px 24px;
    background-color: #fff;
}

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

.service-detail-image {
    flex: 1;
    min-width: 450px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    min-width: 450px;
}

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

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

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

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.booking-prompt {
    padding: 80px 24px;
    background-color: #f8fafc;
}

.contact-info {
    padding: 80px 24px;
    background-color: #fff;
}

.contact-details {
    padding: 60px 24px 100px;
    background-color: #fafafa;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

.contact-method {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-method h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.contact-method p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.contact-note {
    padding: 80px 24px;
    background-color: #fff;
}

.thanks-section {
    padding: 120px 24px;
    background-color: #fff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-section h1 {
    font-size: 42px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 24px;
    text-align: center;
}

.thanks-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-detail {
    background-color: #f0fdf4;
    border: 2px solid #10b981;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: center;
}

.thanks-detail p {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
}

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

.button-primary {
    padding: 14px 32px;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.button-primary:hover {
    background-color: #1d4ed8;
}

.button-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: #2563eb;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.button-secondary:hover {
    background-color: #eff6ff;
}

.legal-page {
    padding: 80px 24px 100px;
    background-color: #fff;
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 600;
    color: #475569;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 32px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 8px;
}

.legal-page a {
    color: #2563eb;
    text-decoration: none;
}

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

.legal-page table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.legal-page table td {
    padding: 12px;
    border: 1px solid #e2e8f0;
    font-size: 15px;
    color: #475569;
}

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

    .hero-text-overlay p {
        font-size: 18px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .image-split img,
    .split-text {
        width: 100%;
        min-width: 100%;
    }

    .service-card-visual {
        min-width: 100%;
    }

    .approach-image,
    .approach-text,
    .service-detail-image,
    .service-detail-content {
        min-width: 100%;
    }

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