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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

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

.main-nav a:hover {
    color: #0066cc;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    border: 1px solid #ccc;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-section {
    position: relative;
    min-height: 600px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #3498db;
}

.hero-overlay {
    position: relative;
    background: linear-gradient(135deg, rgba(0,102,204,0.85) 0%, rgba(52,152,219,0.75) 100%);
    height: 100%;
    display: flex;
    align-items: center;
    min-height: 600px;
}

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

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

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

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0066cc;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.featured-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.featured-content {
    flex: 1;
}

.featured-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.featured-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a5568;
}

.featured-image {
    flex: 1;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.info-cards-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.info-cards-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a252f;
}

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

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0066cc;
}

.info-card p {
    font-size: 16px;
    color: #4a5568;
}

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

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.service-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.service-item h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #1a252f;
}

.service-item p {
    padding: 0 20px;
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.service-price {
    padding: 0 20px;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.select-service {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    padding: 12px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #0052a3;
}

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

.booking-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.booking-form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a252f;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #555;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0052a3;
}

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

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

.testimonials {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

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

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #3498db 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #0066cc;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

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

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #777;
    max-width: 900px;
    margin: 10px auto 0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #0052a3;
}

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

.cookie-reject:hover {
    background-color: #444;
}

.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #3498db 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

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

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

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

.value-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0066cc;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.approach-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.methodology-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.methodology-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.methodology-section > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
}

.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.method-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.method-item p {
    font-size: 16px;
    color: #4a5568;
}

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

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.mission-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

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

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a5568;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.contact-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0066cc;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-item .note {
    font-size: 14px;
    color: #777;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background-color: #f0f4f8;
    padding: 40px;
    border-radius: 8px;
    min-height: 300px;
}

.map-placeholder p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
}

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

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

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

.faq-item p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

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

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

.thanks-main {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 15px;
}

#selectedServiceDisplay {
    font-weight: 600;
    color: #0066cc;
}

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

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

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

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.step-item p {
    font-size: 15px;
    color: #4a5568;
}

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

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

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

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .ad-notice {
        margin-top: 10px;
    }

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

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

    .featured-grid,
    .approach-content,
    .contact-grid,
    .service-detail {
        flex-direction: column;
    }

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

    .info-cards,
    .values-grid,
    .testimonials,
    .steps-grid {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

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