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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #27ae60;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 2px;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

.hero-cta:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.5);
}

.intro-narrative {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.narrative-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

.narrative-text {
    flex: 1;
}

.narrative-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.narrative-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.insight-block {
    padding: 6rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-text-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insight-text-main p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.insight-features {
    display: flex;
    gap: 2rem;
}

.feature-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.destinations-showcase {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.section-title-center {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #7f8c8d;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.destination-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.dest-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.dest-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.dest-content {
    padding: 1.5rem;
}

.dest-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.dest-content p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.dest-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.cta-inline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.cta-inline p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.testimonials-flow {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.testimonials-flow h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

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

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.booking-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.booking-info {
    flex: 1;
    color: #ffffff;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    font-size: 1.3rem;
    font-weight: bold;
}

.booking-form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.booking-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    display: block;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-details {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .service-details {
    border-color: #27ae60;
    background-color: #f0f9f4;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.25rem;
}

.service-desc {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-disclaimer {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

.form-disclaimer a {
    color: #27ae60;
    text-decoration: underline;
}

.final-message {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.final-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.page-header-visual {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.header-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.header-overlay h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.header-overlay p {
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.services-detailed {
    padding: 5rem 2rem;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.service-full-block {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-full-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.service-description {
    flex: 1;
}

.service-description h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-description p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cta-bottom {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    border-radius: 10px;
}

.cta-bottom h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-bottom p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.about-intro-visual {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.about-image-main {
    width: 100%;
    height: 100%;
}

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

.about-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.about-text-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.about-text-overlay p {
    font-size: 1.5rem;
    color: #ffffff;
    max-width: 800px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.8;
}

.criteria-list {
    list-style: none;
    margin: 1.5rem 0;
}

.criteria-list li {
    padding: 1rem;
    background-color: #f8f9fa;
    margin-bottom: 0.75rem;
    border-left: 4px solid #27ae60;
}

.story-image-block {
    margin: 3rem 0;
    background-color: #e9ecef;
}

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

.about-team {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.about-team h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-values {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.value-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.value-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.about-cta {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #ffffff;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.contact-header {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
}

.contact-detail p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0.4rem;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

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

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

.contact-faq {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1rem;
    color: #7f8c8d;
}

.thanks-selected-service {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.thanks-selected-service h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
}

.thanks-selected-service p {
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.thanks-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-disclosure {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 4;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .narrative-content {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-features {
        flex-direction: column;
    }

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

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

    .booking-container {
        flex-direction: column;
    }

    .service-full-block,
    .service-full-block.reverse {
        flex-direction: column;
    }

    .team-values {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}