* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    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: 20px;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2980b9;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f8d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1e4060;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2c5f8d;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #2c5f8d;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.value-split {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.value-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.split-left {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.split-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-right p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.link-arrow {
    display: inline-block;
    margin-top: 20px;
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

.testimonials {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f8d;
    font-style: normal;
}

.approach-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-cta {
    padding: 100px 20px;
    background-color: #2c5f8d;
    color: #ffffff;
    text-align: center;
}

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

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

.final-split {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.page-header {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    color: #555;
}

.services-main {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-card {
    display: flex;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    align-items: stretch;
}

.service-card.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

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

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1e4060;
    transform: translateY(-2px);
}

.booking-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.booking-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.booking-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4060;
}

.about-intro-split {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

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

.value-item p {
    font-size: 16px;
    color: #555;
}

.team-split {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.philosophy-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.philosophy-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.approach-highlight {
    padding: 80px 20px;
    background-color: #ffffff;
}

.approach-highlight h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.approach-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.approach-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5f8d;
}

.approach-card p {
    font-size: 16px;
    color: #555;
}

.cta-about {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 18px;
    color: #555;
}

.cta-about a {
    color: #2c5f8d;
    font-weight: 600;
    text-decoration: none;
}

.cta-about a:hover {
    text-decoration: underline;
}

.contact-main {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

.info-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.email-display {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.email-inline {
    font-weight: 600;
    color: #1a1a1a;
}

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

.contact-visual {
    flex: 1;
    background-color: #e8eef3;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.contact-cta {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 18px;
    color: #555;
}

.contact-cta a {
    color: #2c5f8d;
    font-weight: 600;
    text-decoration: none;
}

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

.thanks-main {
    padding: 100px 20px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.confirmation-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid #2c5f8d;
}

.confirmation-box p {
    font-size: 17px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.thanks-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 20px auto 40px;
    list-style-position: inside;
}

.next-steps li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
}

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

.btn-primary {
    padding: 16px 40px;
    background-color: #2c5f8d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4060;
}

.btn-secondary {
    padding: 16px 40px;
    background-color: transparent;
    color: #2c5f8d;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #2c5f8d;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

.legal-page {
    padding: 60px 20px 80px;
    background-color: #ffffff;
}

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

.legal-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c5f8d;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5f8d;
    text-decoration: none;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 8px;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .about-intro-split,
    .team-split,
    .final-split,
    .service-card,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .split-right {
        padding: 40px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .testimonials-grid,
    .values-grid,
    .approach-grid {
        flex-direction: column;
    }

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

    .cookie-actions {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }
}