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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

.hero-card {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
    margin-bottom: 80px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #e0e7ee;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-cards {
    padding: 60px 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background-color: #e8eef3;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.info-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.btn-select,
.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.testimonial-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonial-cards h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f0f4f8;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

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

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

.cta-card {
    padding: 100px 0;
    background-color: #2c3e50;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #bdc3c7;
    margin-bottom: 40px;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 16px 40px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    border-top: 1px solid #34495e;
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    background-color: #15202b;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: #bdc3c7;
}

.about-content {
    padding: 80px 0;
}

.content-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-card {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 16px;
}

.about-card.full-width {
    display: flex;
    gap: 50px;
    align-items: center;
}

.card-image-left {
    flex: 1;
    background-color: #d6dfe7;
    border-radius: 12px;
    overflow: hidden;
}

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

.card-text {
    flex: 1;
}

.about-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    border-top: 4px solid #3498db;
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-full {
    padding: 80px 0;
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 50px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #d6dfe7;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.service-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #5a6c7d;
}

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

.service-pricing {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
}

.price-detail {
    color: #7f8c8d;
    font-size: 16px;
}

.booking-info-card {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.info-card-wide {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 16px;
}

.info-card-wide h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

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

.booking-item {
    flex: 1;
    min-width: 220px;
}

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

.booking-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 16px;
}

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

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.location-card {
    flex: 1;
    min-width: 320px;
}

.location-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.location-details {
    margin-bottom: 32px;
}

.location-details p {
    color: #5a6c7d;
    line-height: 1.8;
}

.map-placeholder {
    background-color: #d6dfe7;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.faq-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
}

.faq-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.faq-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 16px;
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-card p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.next-steps-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: left;
}

.next-steps-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 14px 32px;
    border: 2px solid #3498db;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.legal-content {
    padding: 60px 0 100px;
}

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

.legal-content > .container > p {
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 48px;
}

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

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 16px;
    color: #34495e;
}

.legal-section p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
}

.legal-section li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

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

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

    .hero-image {
        min-height: 300px;
    }

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

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .about-card.full-width {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

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

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

    .values-grid,
    .card-grid,
    .testimonials-grid,
    .booking-details {
        flex-direction: column;
    }

    .thanks-card {
        padding: 40px 30px;
    }

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

    .thanks-actions a,
    .thanks-actions button {
        width: 100%;
    }
}