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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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-buttons {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a4d5e;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

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

.main-nav a:hover {
    color: #1a4d5e;
}

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

.hero-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a4d5e;
    margin-bottom: 24px;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #1a4d5e;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.content-column {
    flex: 1;
}

.content-column h2 {
    font-size: 36px;
    color: #1a4d5e;
    margin-bottom: 24px;
}

.content-column p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.image-column {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.section-title {
    font-size: 38px;
    text-align: center;
    color: #1a4d5e;
    margin-bottom: 60px;
}

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

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

.destination-card:hover {
    transform: translateY(-6px);
}

.card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 14px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.image-column-wide {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-column-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-list {
    flex: 1;
    padding: 0 20px;
}

.services-list h2 {
    font-size: 36px;
    color: #1a4d5e;
    margin-bottom: 36px;
}

.service-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e0e6ed;
}

.service-item:last-of-type {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.service-header h3 {
    font-size: 20px;
    color: #2c3e50;
}

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

.service-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.cta-secondary {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #1a4d5e;
    color: #1a4d5e;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a4d5e;
    color: #fff;
}

.benefits-section {
    padding: 80px 0;
    background: #e8f4f8;
}

.benefits-section h2 {
    font-size: 36px;
    text-align: center;
    color: #1a4d5e;
    margin-bottom: 50px;
}

.benefits-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-block {
    flex: 1;
    min-width: 240px;
}

.benefit-block h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.benefit-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.testimonials-inline {
    padding: 60px 0;
    background: #2c3e50;
}

.testimonial-row {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.testimonial-text {
    flex: 1;
    min-width: 280px;
}

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

.testimonial-text .author {
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 600;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 36px;
    text-align: center;
}

.form-intro h2 {
    font-size: 32px;
    color: #1a4d5e;
    margin-bottom: 14px;
}

.form-intro p {
    font-size: 16px;
    color: #5a6c7d;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a4d5e;
}

.btn-submit {
    padding: 16px 32px;
    background: #1a4d5e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 50px 0;
    background: #fff;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 32px;
    background: #fef9e7;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
}

.site-footer {
    background: #1a2a3a;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p,
.footer-column a {
    display: block;
    font-size: 14px;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.references-section {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.references-section h4 {
    font-size: 16px;
    margin-bottom: 14px;
    color: #fff;
}

.reference-item {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 8px;
}

.reference-item a {
    color: #5dade2;
    text-decoration: none;
}

.reference-item a:hover {
    text-decoration: underline;
}

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

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

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

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

    .hero-text h1 {
        font-size: 32px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .benefits-columns {
        flex-direction: column;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

.thanks-message {
    text-align: center;
    padding: 100px 20px;
}

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

.thanks-message p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 22px;
    color: #1a4d5e;
    margin-bottom: 12px;
}

.service-card .service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card ul li {
    font-size: 14px;
    color: #4a5568;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
}

.about-hero h1 {
    font-size: 48px;
    color: #1a4d5e;
    text-align: center;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 20px;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
}

.contact-info h1 {
    font-size: 36px;
    color: #1a4d5e;
    margin-bottom: 30px;
}

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

.info-block h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.legal-content h1 {
    font-size: 38px;
    color: #1a4d5e;
    margin-bottom: 30px;
}

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

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

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}