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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.header-split {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #3498db;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #e0e0e0;
}

.intro-content {
    flex: 1;
    padding: 80px;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.values-grid {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.featured-destinations {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.destinations-header {
    text-align: center;
    margin-bottom: 60px;
}

.destinations-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.destinations-header p {
    font-size: 18px;
    color: #4a5568;
}

.destinations-showcase {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.destination-large {
    flex: 1 1 calc(50% - 10px);
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.destination-small {
    flex: 1 1 calc(25% - 15px);
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.destination-large img,
.destination-small img {
    width: 100%;
    height: 100%;
    display: block;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
}

.destination-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.destination-overlay p {
    font-size: 15px;
    opacity: 0.9;
}

.services-preview-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    gap: 60px;
    padding: 0 40px;
    align-items: center;
}

.services-text {
    flex: 1;
}

.services-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.services-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #4a5568;
}

.link-underline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    transition: all 0.3s ease;
}

.link-underline:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.services-preview-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-card {
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.preview-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.preview-card .price {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.form-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    background-color: #e0e0e0;
}

.form-container {
    flex: 1;
    padding: 80px;
    background-color: #2c3e50;
    color: #ffffff;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-container p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-split {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.testimonials-intro p {
    font-size: 18px;
    color: #4a5568;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    padding: 36px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

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

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 100px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

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

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

.page-hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.story-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #e0e0e0;
}

.story-content {
    flex: 1;
    padding: 80px;
    background-color: #f8f9fa;
}

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

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

.philosophy-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.philosophy-intro {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.philosophy-intro p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    padding: 36px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.philosophy-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.team-content {
    flex: 1;
    padding: 80px;
    background-color: #ffffff;
}

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

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

.team-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #e0e0e0;
}

.approach-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.approach-cards {
    display: flex;
    gap: 40px;
}

.approach-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.approach-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-section-about {
    max-width: 1000px;
    margin: 100px auto;
    padding: 80px;
    background-color: #2c3e50;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.cta-about-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.services-hero {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

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

.services-hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.services-main {
    max-width: 1400px;
    margin: 80px auto;
}

.service-item-split {
    display: flex;
    margin-bottom: 60px;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #e0e0e0;
}

.service-details {
    flex: 1;
    padding: 60px 80px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-details > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.pricing-note {
    max-width: 1000px;
    margin: 80px auto;
    padding: 40px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.pricing-note-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #856404;
}

.pricing-note-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
    margin-bottom: 12px;
}

.service-form-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.service-form-intro p {
    font-size: 16px;
    color: #4a5568;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.service-form .form-group label {
    color: #2c3e50;
}

.service-form .form-group input,
.service-form .form-group select {
    background-color: #ffffff;
    color: #2c3e50;
    border: 1px solid #ddd;
}

.service-form .form-group select option {
    background-color: #ffffff;
    color: #2c3e50;
}

.contact-hero {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

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

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

.contact-split-main {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
    padding: 0 40px;
}

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

.contact-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 32px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-note {
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.contact-visual-section {
    flex: 1;
    padding: 0 40px;
}

.contact-image-container {
    width: 100%;
    height: 400px;
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.contact-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-cta-box {
    padding: 36px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 8px;
}

.contact-cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-cta-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.9;
}

.location-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.location-details {
    display: flex;
    gap: 40px;
}

.location-item {
    flex: 1;
}

.location-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.location-item p {
    font-size: 15px;
    color: #4a5568;
}

.faq-contact {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    padding: 28px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-main {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    min-height: 600px;
}

.thanks-content {
    flex: 1;
    padding: 80px;
    background-color: #f8f9fa;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 32px;
}

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

.thanks-intro {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 48px;
}

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

.thanks-steps {
    margin-bottom: 48px;
}

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

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

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

.thanks-service-info {
    padding: 24px;
    background-color: #e3f2fd;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-service-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1565c0;
}

.thanks-service-info p {
    font-size: 15px;
    color: #1565c0;
}

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

.btn-primary {
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #34495e;
}

.btn-secondary {
    padding: 14px 28px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.thanks-visual {
    flex: 1;
    position: relative;
    background-color: #e0e0e0;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.thanks-message {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
}

.thanks-message h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-resources {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.thanks-resources h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1a1a1a;
    text-align: center;
}

.resources-grid {
    display: flex;
    gap: 32px;
}

.resource-card {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.resource-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.resource-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #2980b9;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px 100px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookies-table th {
    font-weight: 700;
    color: #2c3e50;
}

.cookies-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .story-split,
    .team-split,
    .form-section-split,
    .service-item-split,
    .page-hero-split,
    .contact-split-main,
    .thanks-main,
    .services-preview-split {
        flex-direction: column;
    }

    .service-item-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .story-content,
    .team-content,
    .form-container,
    .service-details,
    .thanks-content {
        padding: 40px;
    }

    .values-grid,
    .testimonials-grid,
    .approach-cards,
    .location-details,
    .resources-grid {
        flex-direction: column;
    }

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

    .destination-large,
    .destination-small {
        flex: 1 1 100%;
        min-height: 350px;
    }

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

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

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

@media (max-width: 768px) {
    .main-nav {
        gap: 16px;
        font-size: 14px;
    }

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

    .intro-content h2,
    .story-content h2,
    .team-content h2 {
        font-size: 28px;
    }

    .destinations-header h2,
    .services-text h2,
    .testimonials-intro h2,
    .approach-section h2,
    .faq-contact h2 {
        font-size: 32px;
    }

    .contact-split-main {
        gap: 40px;
    }

    .contact-info-section,
    .contact-visual-section {
        padding: 0 20px;
    }

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