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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

.ad-notice {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 37px;
    z-index: 999;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2980b9;
    text-decoration: none;
}

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

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

.nav-right a:hover {
    color: #2980b9;
}

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

.hero-text {
    flex: 1;
    padding: 80px 8% 80px 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-reverse {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.intro-text {
    flex: 1;
    padding: 80px 8%;
    background: #f8f9fa;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.features-grid {
    padding: 100px 8%;
    background: #ffffff;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.section-header-center p {
    font-size: 20px;
    color: #7f8c8d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: space-between;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px;
    margin-bottom: 20px;
    color: #555;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 15px;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonial-split {
    display: flex;
    background: #ecf0f1;
}

.testimonial-content {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    border-left: 5px solid #3498db;
    padding-left: 30px;
}

.testimonial-content p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 18px;
    font-style: normal;
    color: #7f8c8d;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.how-it-works {
    padding: 100px 8%;
    background: #2c3e50;
    color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 20px;
    opacity: 0.3;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.booking-form-section {
    display: flex;
    min-height: 600px;
}

.form-side {
    flex: 1.2;
    padding: 80px 8%;
    background: #f8f9fa;
}

.form-side h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.booking-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.info-side {
    flex: 0.8;
    padding: 80px 6%;
    background: #34495e;
    color: white;
}

.info-side h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.5;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.why-choose {
    padding: 100px 8%;
    background: white;
}

.why-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.why-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.why-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.stats-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #7f8c8d;
}

.cta-banner {
    padding: 100px 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.cta-primary {
    background: white;
    color: #667eea;
}

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

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 8% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 10px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px !important;
    opacity: 0.6 !important;
    max-width: 900px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: white;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.page-hero {
    padding: 120px 8% 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 80px 8%;
}

.about-text {
    flex: 1;
    padding-right: 60px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.mission-reverse {
    display: flex;
    align-items: center;
    padding: 80px 8%;
    background: #f8f9fa;
}

.mission-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.mission-text {
    flex: 1;
    padding-left: 60px;
}

.mission-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.mission-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 100px 8%;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #3498db;
}

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

.team-section {
    padding: 100px 8%;
    background: #ecf0f1;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-intro p {
    font-size: 19px;
    color: #555;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

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

.cta-about {
    padding: 80px 8%;
    text-align: center;
    background: white;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.services-detailed {
    padding: 80px 8%;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    gap: 50px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #34495e;
}

.included-list {
    list-style: none;
    margin-bottom: 25px;
}

.included-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.included-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    font-weight: 700;
}

.custom-packages {
    padding: 100px 8%;
    background: #f8f9fa;
    text-align: center;
}

.custom-packages h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.custom-packages > p {
    font-size: 20px;
    margin-bottom: 50px;
    color: #555;
}

.custom-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 50px;
}

.custom-feature {
    flex: 1;
    max-width: 300px;
}

.custom-feature h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #3498db;
}

.custom-feature p {
    font-size: 17px;
    color: #555;
}

.why-book {
    padding: 100px 8%;
    background: white;
}

.why-book h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    padding: 35px;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.contact-split {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

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

.note-small {
    font-size: 15px !important;
    color: #7f8c8d !important;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

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

.map-caption {
    margin-top: 15px;
    font-size: 15px;
    color: #7f8c8d;
    text-align: center;
}

.faq-section {
    padding: 100px 8%;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    padding: 30px;
    background: white;
    border-radius: 8px;
}

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

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

.visit-us {
    padding: 100px 8%;
    background: white;
    text-align: center;
}

.visit-us h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.visit-us > p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.office-image {
    max-width: 900px;
    margin: 0 auto;
}

.office-image img {
    width: 100%;
    border-radius: 8px;
}

.thanks-page {
    display: flex;
    min-height: 70vh;
    align-items: center;
    padding: 80px 8%;
    gap: 60px;
}

.thanks-content {
    flex: 1.3;
}

.success-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.selected-service-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.selected-service-info p {
    font-size: 18px;
    color: #34495e;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.steps-list li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.thanks-info {
    margin-bottom: 40px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 5px;
}

.thanks-info p {
    font-size: 17px;
    color: #34495e;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #3498db;
    color: white;
}

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

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

.btn-secondary:hover {
    background: #3498db;
    color: white;
}

.thanks-image {
    flex: 0.7;
}

.thanks-image img {
    width: 100%;
    border-radius: 8px;
}

.legal-page {
    padding: 80px 8% 100px;
    background: white;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.updated {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #3498db;
}

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

.legal-content ul {
    margin: 20px 0 20px 25px;
}

.legal-content ul li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-reverse,
    .testimonial-split,
    .booking-form-section,
    .about-split,
    .mission-reverse,
    .service-detail-card,
    .contact-split,
    .thanks-page {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-text,
    .intro-text,
    .about-text,
    .mission-text {
        padding-right: 8%;
        padding-left: 8%;
    }

    .steps-container,
    .stats-grid,
    .custom-features,
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

    .nav-right {
        gap: 20px;
    }
}

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

    .section-header-center h2,
    .values-section h2,
    .team-section h2,
    .faq-section h2,
    .why-book h2,
    .custom-packages h2,
    .cta-banner h2 {
        font-size: 32px;
    }

    .values-grid,
    .benefits-split,
    .faq-grid {
        flex-direction: column;
    }

    .value-card,
    .benefit-item,
    .faq-item {
        flex: 1 1 100%;
    }

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

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