* {
    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: #fff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2c5f8d;
    color: #fff;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #fff;
    color: #2c5f8d;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.intro-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.intro-text {
    flex: 1;
}

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

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

.intro-image {
    flex: 1;
    background-color: #e9ecef;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c5f8d;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

.service-content p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 20px;
}

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

.select-service {
    width: 100%;
    padding: 12px;
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #234a6d;
}

.service-card.selected {
    border: 3px solid #2c5f8d;
}

.booking-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.booking-info p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 30px;
}

.booking-benefits {
    list-style: none;
    padding-left: 0;
}

.booking-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.booking-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f8d;
    font-weight: 700;
    font-size: 20px;
}

.booking-form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.booking-form input[readonly] {
    background-color: #e9ecef;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #234a6d;
}

.submit-button:disabled {
    background-color: #adb5bd;
    cursor: not-allowed;
}

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

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

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

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

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 12px;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background-color: #2c5f8d;
    color: #fff;
}

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.thanks-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c5f8d;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 16px;
}

.thanks-container .highlight {
    font-weight: 600;
    color: #2c5f8d;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #2c5f8d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #234a6d;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.contact-info p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: #2c5f8d;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 4px;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.page-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c5f8d;
}

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

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

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

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

.page-content li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 8px;
    line-height: 1.7;
}

.about-hero {
    display: flex;
    min-height: 400px;
    margin-bottom: 60px;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #2c5f8d;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    color: #fff;
}

.about-hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .booking-split,
    .contact-split,
    .about-hero {
        flex-direction: column;
    }

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

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

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

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

    .nav-menu {
        gap: 20px;
    }
}