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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-accept {
    background-color: #00b894;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
}

.ad-label {
    font-size: 11px;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid #dfe6e9;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #00b894;
}

.hero-section {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

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

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
}

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

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

.intro-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 8px;
    background-color: #ffffff;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.intro-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3436;
}

.intro-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #636e72;
}

.highlight-card {
    border-radius: 8px;
}

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

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

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

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px 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 4px 16px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3436;
}

.service-content p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #00b894;
    margin-top: 15px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #00b894;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #00b894;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00b894;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #00b894;
    color: #ffffff;
}

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

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #00b894;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #636e72;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
}

.booking-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.booking-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.booking-text {
    flex: 1;
    min-width: 300px;
}

.booking-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d3436;
}

.booking-text p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 15px;
}

.booking-form-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.booking-form-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2d3436;
}

.booking-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3436;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #00b894;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #00b894;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 40px 0;
}

.disclaimer-text {
    font-size: 13px;
    color: #636e72;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    color: #b2bec3;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b2bec3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #636e72;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #b2bec3;
}

.page-hero {
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #ffffff;
}

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

.content-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.content-main {
    flex: 2;
    min-width: 300px;
}

.content-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #2d3436;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight-box {
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3436;
}

.highlight-box p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 0;
}

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

.sidebar-card {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-card img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.info-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #dfe6e9;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2d3436;
}

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

.values-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #636e72;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
    font-size: 20px;
}

.stats-card {
    padding: 30px;
    border-radius: 8px;
}

.stat-item {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #dfe6e9;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #636e72;
}

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

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

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-text {
    flex: 1;
    min-width: 300px;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.service-detail-text p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #636e72;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

.service-meta {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.service-meta span {
    font-size: 14px;
    color: #636e72;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #00b894;
    margin-top: 20px;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.booking-cta {
    padding: 80px 0;
    text-align: center;
}

.booking-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d3436;
}

.booking-cta p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d3436;
}

.contact-info p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3436;
}

.info-block p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

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

.contact-additional h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #dfe6e9;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2d3436;
}

.faq-item p {
    font-size: 15px;
    color: #636e72;
    line-height: 1.6;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 10px;
}

.thanks-details strong {
    color: #2d3436;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2d3436;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.step-item {
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #00b894;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3436;
}

.step-item p {
    font-size: 15px;
    color: #636e72;
}

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

.legal-page {
    padding: 80px 0;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3436;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3436;
}

.legal-content p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: #00b894;
    text-decoration: none;
}

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

.last-updated {
    font-size: 14px;
    color: #636e72;
    font-style: italic;
    margin-bottom: 30px;
}

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

    .hero-text p {
        font-size: 18px;
    }

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

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

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

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

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

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

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

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

    .cookie-actions {
        justify-content: center;
    }
}