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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.625rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4a90e2;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #357abd;
}

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #4a90e2;
}

.ad-notice {
    font-size: 0.8125rem;
    color: #666;
    border: 1px solid #ddd;
    padding: 0.375rem 0.875rem;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #4a90e2;
}

.hero-visual {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.split-visual {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

.intro-section {
    background: #ffffff;
}

.values-block {
    background: #1a1a1a;
    color: #ffffff;
    padding: 6rem 2rem;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
}

.values-block h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 3rem;
}

.value-card {
    flex: 1;
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
    color: #ffffff;
}

.value-card p {
    color: #cccccc;
    line-height: 1.7;
}

.services-preview {
    background: #f8f9fa;
}

.service-highlights {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.highlight-item strong {
    font-size: 1.125rem;
    color: #1a1a1a;
}

.highlight-item span {
    color: #666;
    font-size: 0.9375rem;
}

.link-arrow {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

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

.booking-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.container-medium {
    max-width: 800px;
    margin: 0 auto;
}

.booking-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.booking-form {
    background: #f8f9fa;
    padding: 3rem;
    border: 1px solid #e5e5e5;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
}

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

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #4a90e2;
}

.trust-markers {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.marker-row {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.marker-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.marker-item strong {
    font-size: 1.25rem;
    color: #1a1a1a;
}

.marker-item span {
    color: #666;
    font-size: 0.9375rem;
}

.site-footer {
    background: #2c2c2c;
    color: #cccccc;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.disclaimer {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
    font-size: 0.875rem;
}

.services-hero {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    min-height: 350px;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.service-details p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a4a4a;
    padding-left: 1.5rem;
    position: relative;
}

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

.about-hero {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-story {
    padding: 5rem 2rem;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.story-image {
    flex: 1;
    background: #e5e5e5;
    height: 500px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.about-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.contact-hero {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #cccccc;
}

.contact-info {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.detail-item {
    margin-bottom: 2rem;
}

.detail-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.detail-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #e5e5e5;
    min-height: 500px;
    overflow: hidden;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page .updated {
    color: #666;
    margin-bottom: 3rem;
    font-size: 0.9375rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.legal-page p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #4a4a4a;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.thanks-content .service-selected {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #4a90e2;
}

.thanks-content .service-selected strong {
    color: #1a1a1a;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: #f8f9fa;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #e5e5e5;
    display: inline-block;
    transition: all 0.3s ease;
}

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

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

    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .split-layout {
        flex-direction: column;
        min-height: auto;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .values-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .story-split {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}