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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a90e2;
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a2332;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.intro-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    width: 100%;
    height: 220px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 25px 25px;
    color: #555555;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px 28px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: #357abd;
    transform: scale(1.02);
}

.select-service-btn:active {
    transform: scale(0.98);
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

#selected-service-display {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

#selected-service-display.active {
    color: #28a745;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover:not(:disabled) {
    background-color: #357abd;
    transform: scale(1.02);
}

.submit-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    opacity: 0.6;
}

.locations-highlight {
    padding: 80px 0;
    background-color: #1a2332;
    color: #ffffff;
}

.locations-highlight h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.location-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 30px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.location-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.location-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
}

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

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

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

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a90e2;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #333333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e50;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-accept {
    background-color: #28a745;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.cookie-accept:active {
    transform: scale(0.95);
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
    transform: scale(1.05);
}

.cookie-reject:active {
    transform: scale(0.95);
}

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

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
}

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

.content-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

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

.card-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.card-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: 350px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

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

.values-section {
    margin: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}

.mission-card {
    background-color: #4a90e2;
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 60px;
}

.mission-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 17px;
    line-height: 1.8;
}

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 50px;
}

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

.team-member {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-member h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.role {
    font-size: 14px;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: 350px;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555555;
}

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

.service-features li {
    font-size: 15px;
    line-height: 2;
    color: #2c3e50;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #357abd;
    transform: scale(1.05);
}

.cta-button:active {
    transform: scale(0.95);
}

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

.comparison-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.comparison-item {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.comparison-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.comparison-item p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.comparison-item strong {
    font-size: 15px;
    color: #4a90e2;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}

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

.locations-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-item {
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
}

.location-item h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.location-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

.hours {
    font-size: 13px;
    color: #6c757d;
    margin-top: 8px;
}

.faq-section {
    margin-top: 80px;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1;
    min-width: 250px;
}

.faq-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555555;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.confirmation-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
}

.follow-up {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.back-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-btn:hover {
    background-color: #357abd;
    transform: scale(1.05);
}

.back-btn:active {
    transform: scale(0.95);
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

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

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .card-grid,
    .services-grid,
    .locations-grid {
        gap: 20px;
    }

    .service-detail-card {
        gap: 30px;
    }

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

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