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

.ad-disclosure {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-visual {
    position: relative;
    width: 100%;
    background-color: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-overlay h1 {
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    max-width: 900px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 22px;
    color: #f0f0f0;
    max-width: 700px;
    font-weight: 300;
}

.intro-story {
    padding: 100px 40px;
    background-color: #fafafa;
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

.lead-text {
    font-size: 26px;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.narrow-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin: 50px 0 25px;
    font-weight: 700;
}

.visual-showcase {
    padding: 80px 40px;
    background-color: #ffffff;
}

.offset-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.showcase-item {
    position: relative;
    background-color: #f5f5f5;
}

.showcase-item.large {
    flex: 2;
    min-width: 600px;
}

.showcase-item:not(.large) {
    flex: 1;
    min-width: 400px;
}

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

.showcase-text {
    padding: 30px;
    background-color: #ffffff;
}

.showcase-text h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.showcase-text p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.services-overview {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

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

.services-overview h2 {
    font-size: 48px;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a4a4a;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 25px 0 20px;
}

.btn-select {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-select:hover {
    background-color: #333;
    transform: scale(1.02);
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-content {
    flex: 1;
    padding: 40px;
}

.split-content h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.why-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.booking-form-section {
    padding: 100px 40px;
    background-color: #f4f4f4;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background-color: #ffffff;
}

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

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

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

.testimonials {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: #f9f9f9;
    padding: 35px;
    border-left: 4px solid #1a1a1a;
}

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

.testimonial cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.email-text {
    color: #b0b0b0;
    font-size: 15px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #e0e0e0;
    transform: scale(1.02);
}

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

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

.page-hero {
    position: relative;
    background-color: #1a1a1a;
}

.page-hero .hero-image-container {
    height: 50vh;
    min-height: 400px;
}

.page-hero .hero-overlay h1 {
    font-size: 52px;
}

.about-story {
    padding: 100px 40px;
    background-color: #ffffff;
}

.values-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
}

.value-item h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.team-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background-color: #f9f9f9;
    padding: 35px;
}

.member-info h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 700;
}

.role {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.approach-section {
    padding: 100px 40px;
    background-color: #fafafa;
}

.services-detail {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.service-detail-content {
    flex: 1;
    padding: 45px;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 25px 0 15px;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a4a4a;
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.tour-info {
    background-color: #ffffff;
    padding: 20px;
    margin: 25px 0;
}

.tour-info p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.price-display {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 25px 0 20px;
}

.btn-book {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-book:hover {
    background-color: #333;
    transform: scale(1.02);
}

.included-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.included-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.included-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.included-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.included-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-page h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

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

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

.faq-section {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-section h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.thanks-page {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.confirmation-box {
    background-color: #ffffff;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.confirmation-box h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.next-steps {
    list-style: decimal;
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.selected-service-note {
    font-size: 18px;
    color: #1a1a1a;
    background-color: #f0f0f0;
    padding: 15px;
    margin: 20px 0;
    font-weight: 600;
}

.tips-box {
    background-color: #f0f0f0;
    padding: 25px;
    margin-bottom: 30px;
}

.tips-box h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.tips-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

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

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.thanks-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

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

.legal-page h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

.legal-content h3 {
    font-size: 24px;
    color: #2c2c2c;
    margin: 30px 0 15px;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 20px;
    color: #333;
    margin: 20px 0 10px;
    font-weight: 700;
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

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

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

.cookie-table th {
    background-color: #f9f9f9;
    font-weight: 700;
    color: #1a1a1a;
}

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

.last-updated {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .nav-links {
        gap: 20px;
    }

    .split-layout,
    .split-layout.reverse,
    .contact-layout,
    .thanks-container,
    .service-detail-layout,
    .service-detail-layout.reverse {
        flex-direction: column;
    }

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

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

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}