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

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

a {
    color: #2c5f7c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d50;
}

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

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

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

.header {
    background-color: #fff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7c;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    font-size: 15px;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 5px 12px;
    border-radius: 4px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 60px;
    background-color: #2c5f7c;
}

.hero-text {
    max-width: 500px;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #ecf0f1;
    line-height: 1.7;
}

.hero-right {
    background-color: #34495e;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.cta-secondary:hover {
    background-color: #2c5f7c;
    color: #fff;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-left {
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.intro-right {
    display: flex;
    align-items: center;
    padding: 60px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

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

.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: flex;
    min-height: 400px;
    border-bottom: 1px solid #e1e8ed;
}

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

.service-image,
.service-details {
    flex: 1;
}

.service-image {
    background-color: #34495e;
    overflow: hidden;
}

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

.service-details {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.duration,
.price {
    font-size: 15px;
    color: #7f8c8d;
}

.price {
    font-weight: 700;
    font-size: 22px;
    color: #e67e22;
}

.service-select {
    background-color: #2c5f7c;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

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

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

.booking-left {
    padding: 60px;
    background-color: #fff;
}

.booking-form-container h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

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

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

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

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

.btn-submit {
    background-color: #27ae60;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.booking-right {
    background-color: #2c5f7c;
    padding: 60px;
    display: flex;
    align-items: center;
}

.booking-info {
    color: #fff;
}

.booking-info h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.step-number {
    background-color: #e67e22;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step p {
    line-height: 1.7;
    color: #ecf0f1;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-flex {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 14px;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

.hero-text-side,
.hero-image-side {
    flex: 1;
}

.hero-text-side {
    background-color: #34495e;
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-side h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text-side p {
    font-size: 18px;
    color: #ecf0f1;
    line-height: 1.7;
}

.hero-image-side {
    background-color: #95a5a6;
    overflow: hidden;
}

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

.content-split {
    display: flex;
    padding: 80px 0;
}

.content-left,
.content-right {
    flex: 1;
    padding: 0 60px;
}

.content-left h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-left p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.stats-block {
    background-color: #2c5f7c;
    padding: 50px 40px;
    border-radius: 8px;
    color: #fff;
}

.stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

.approach-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    min-width: 300px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5f7c;
}

.approach-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.team-split {
    display: flex;
    min-height: 500px;
}

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

.team-image,
.team-text {
    flex: 1;
}

.team-image {
    background-color: #95a5a6;
    overflow: hidden;
}

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

.team-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.team-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    background-color: #fff;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.values-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.8;
}

.page-intro {
    background-color: #2c5f7c;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-intro h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.page-intro p {
    font-size: 18px;
    color: #ecf0f1;
}

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

.service-detail-card {
    display: flex;
    min-height: 500px;
    margin-bottom: 0;
    border-bottom: 1px solid #e1e8ed;
}

.service-detail-card:last-child {
    border-bottom: none;
}

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

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

.service-detail-image {
    background-color: #34495e;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content > p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.service-highlights {
    margin: 32px 0;
}

.service-highlights h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c5f7c;
}

.service-highlights ul {
    list-style: none;
    padding-left: 0;
}

.service-highlights ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.service-highlights ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: 700;
}

.service-pricing-info {
    margin-top: 32px;
}

.price-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.duration-info {
    font-size: 15px;
    color: #7f8c8d;
}

.price-large {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
}

.booking-cta {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.booking-cta h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.booking-cta p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #7f8c8d;
}

.contact-hero {
    background-color: #2c5f7c;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

.contact-info-side {
    background-color: #f8f9fa;
    padding: 60px;
}

.contact-details {
    max-width: 500px;
}

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

.contact-block h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5f7c;
}

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

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

.contact-details-side {
    background-color: #fff;
    padding: 60px;
    display: flex;
    align-items: center;
}

.contact-additional {
    max-width: 600px;
}

.contact-additional h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 28px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f7c;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.location-context {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.location-context h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.location-context p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
}

.thanks-hero {
    background-color: #f8f9fa;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 50px;
    color: #555;
}

.selected-service-display {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #e67e22;
}

.selected-service-display p {
    font-size: 16px;
    color: #2c3e50;
}

.confirmation-details {
    margin-bottom: 50px;
}

.confirmation-details h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.step-icon {
    background-color: #2c5f7c;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f7c;
}

.step-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

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

.btn-primary {
    background-color: #2c5f7c;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2c5f7c;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c5f7c;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f7c;
    color: #fff;
}

.thanks-contact {
    margin-top: 30px;
}

.thanks-contact p {
    font-size: 15px;
    color: #7f8c8d;
}

.legal-content {
    padding: 80px 0;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

.legal-content a {
    color: #2c5f7c;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a3d50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e1e8ed;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .booking-split,
    .page-hero-split,
    .content-split,
    .team-split,
    .contact-content-split,
    .service-card,
    .service-detail-card {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-card:nth-child(even),
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right,
    .booking-left,
    .booking-right,
    .hero-text-side,
    .hero-image-side,
    .content-left,
    .content-right,
    .team-image,
    .team-text,
    .contact-info-side,
    .contact-details-side,
    .service-image,
    .service-details,
    .service-detail-image,
    .service-detail-content {
        padding: 40px 30px;
    }

    .hero-text h1,
    .hero-text-side h1 {
        font-size: 36px;
    }

    .main-nav ul {
        gap: 15px;
        font-size: 14px;
    }

    .testimonials-flex {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .approach-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 28px;
    }

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

    .main-nav ul {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 13px;
    }

    .section-header-centered h2 {
        font-size: 32px;
    }

    .service-details h3 {
        font-size: 22px;
    }

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