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

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

.hidden {
    display: none;
}

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

.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;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #4CAF50;
    color: white;
}

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

.btn-cookie:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

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

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

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

.nav-main a:hover {
    color: #4CAF50;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.disclosure-label {
    font-size: 12px;
    font-weight: 600;
    color: #856404;
}

.hero-card {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8), rgba(44, 62, 80, 0.7));
    display: flex;
    align-items: center;
}

.hero-text-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-text-card h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

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

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

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

.info-card:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.info-card p {
    color: #666;
    font-size: 15px;
}

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

.section-header-card {
    text-align: center;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.section-header-card h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header-card p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

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

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #4CAF50;
}

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

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.booking-header p {
    color: #666;
    font-size: 16px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

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

.btn-submit {
    padding: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.trust-section {
    padding: 80px 0;
    background-color: #2c3e50;
}

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

.trust-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.trust-card blockquote {
    font-style: italic;
}

.trust-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-card cite {
    font-style: normal;
    font-weight: 600;
    color: #4CAF50;
    font-size: 14px;
}

.disclaimer-card {
    padding: 60px 0;
    background-color: #fff3cd;
}

.disclaimer-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.disclaimer-content h3 {
    font-size: 22px;
    color: #856404;
    margin-bottom: 15px;
}

.disclaimer-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4CAF50;
}

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

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

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

.footer-column a:hover {
    color: #4CAF50;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.thanks-card {
    max-width: 600px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    text-align: center;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.thanks-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-detail {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-detail strong {
    color: #2c3e50;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-back:hover {
    background-color: #4CAF50;
    transform: translateY(-2px);
}

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

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

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

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

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

.contact-details-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

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

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
}

.detail-text h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.detail-text p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

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

.about-hero-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.about-hero-card h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-hero-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.about-content-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

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

.about-content-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image-card {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.services-intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    text-align: center;
}

.services-intro-card h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-intro-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

.legal-date {
    color: #999;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-text-card {
        padding: 30px;
    }

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

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

    .booking-card {
        padding: 30px 20px;
    }

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

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

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

    .about-hero-card,
    .about-content-card,
    .legal-content {
        padding: 30px 20px;
    }
}