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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e6a962;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #d4895f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.7rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin-right: 1rem;
}

.nav-right a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-right {
    flex: 1;
    background-color: #d4d4d4;
}

.hero-right img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.intro-asymmetric {
    padding: 6rem 15% 6rem 10%;
    background-color: var(--bg-white);
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-grid {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered h2 {
    font-size: 2.75rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card {
    display: flex;
    margin-bottom: 4rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-left {
    flex-direction: row;
}

.service-right {
    flex-direction: row-reverse;
}

.service-card img {
    flex: 1;
    min-width: 50%;
    background-color: #c4c4c4;
}

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    align-self: flex-start;
    padding: 0.85rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.trust-container h2 {
    text-align: center;
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.testimonials-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.form-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.form-container-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-intro {
    flex: 1;
    padding: 4rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.travel-form {
    flex: 1;
    padding: 4rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 10%;
    background-color: #fff8f0;
    border-top: 1px solid var(--border-color);
}

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: justify;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.25rem;
    color: var(--bg-white);
}

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

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

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

.footer-col ul li a {
    color: #c4c4c4;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    color: #8a8a8a;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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: 2rem;
}

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

.cookie-content p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: var(--accent-color);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.about-hero {
    padding: 5rem 15%;
    background-color: var(--bg-light);
}

.about-hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
}

.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
}

.story-left {
    flex: 1;
    background-color: #d0d0d0;
}

.story-left img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.story-right {
    flex: 1;
    padding: 0 5%;
}

.story-right h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.philosophy-section {
    padding: 5rem 10%;
    background-color: var(--bg-light);
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 5rem 15%;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.values-section {
    padding: 5rem 10%;
    background-color: var(--bg-light);
}

.values-container h2 {
    text-align: center;
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-left: 5px solid var(--secondary-color);
    border-radius: 6px;
}

.value-item h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-about {
    padding: 5rem 15%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.services-hero {
    padding: 5rem 15%;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.service-detail {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

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

.service-image-container {
    flex: 1;
    background-color: #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
}

.services-cta {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-box h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 15%;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-info-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.contact-info-card,
.contact-additional {
    flex: 1;
}

.contact-info-card h2,
.contact-additional h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info-card p,
.contact-additional p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
}

.contact-additional h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.response-times {
    list-style: none;
    margin-left: 0;
}

.response-times li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.response-times li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.map-placeholder {
    padding: 3rem 10%;
    background-color: var(--bg-light);
}

.map-info {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.map-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 900px;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.thanks-note {
    background-color: #fff8f0;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.thanks-note p {
    font-size: 0.95rem;
    margin: 0;
}

.legal-page {
    padding: 5rem 10%;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .story-split,
    .form-container-split,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.75rem;
    }

    .service-left,
    .service-right,
    .service-reverse {
        flex-direction: column;
    }

    .service-card img {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 2.25rem;
    }

    .intro-asymmetric {
        padding: 4rem 5%;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .section-header-centered h2 {
        font-size: 2rem;
    }

    .philosophy-grid,
    .testimonials-flow {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}