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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e6ed;
    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: #1a5490;
}

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

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

.nav a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #1a5490;
}

.hero {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85), rgba(44, 62, 80, 0.75));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    color: #ecf0f1;
    font-size: 20px;
    max-width: 700px;
}

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

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

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

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

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

.featured-services {
    padding: 70px 0;
}

.featured-services h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1;
    min-width: 340px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e8ecef;
}

.service-content {
    padding: 30px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

.btn-service {
    background-color: #1a5490;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-choose {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

.content-split.reverse {
    flex-direction: row-reverse;
}

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

.split-text h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.split-text p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.process-cards {
    padding: 70px 0;
}

.process-cards h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.process-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

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

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

.testimonials {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a5490;
}

.testimonial-card p {
    color: #34495e;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.booking-form {
    padding: 70px 0;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.form-card h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer {
    padding: 50px 0;
    background-color: #fef9e7;
    border-top: 2px solid #f39c12;
    border-bottom: 2px solid #f39c12;
}

.disclaimer p {
    color: #5d4e37;
    line-height: 1.8;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

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

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

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

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    line-height: 2;
    text-decoration: none;
    display: block;
}

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

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

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

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

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #1a5490;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #144272;
}

.btn-cookie.btn-secondary {
    background-color: #7f8c8d;
}

.btn-cookie.btn-secondary:hover {
    background-color: #5a6c7d;
}

.page-header {
    background: linear-gradient(135deg, #1a5490, #2c3e50);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

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

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    color: #2c3e50;
    font-size: 30px;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    color: #5a6c7d;
    line-height: 2;
}

.about-intro {
    padding: 70px 0;
}

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

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

.text-block h2 {
    color: #2c3e50;
    font-size: 34px;
    margin-bottom: 25px;
}

.text-block p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
    min-width: 300px;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

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

.value-card h3 {
    color: #1a5490;
    margin-bottom: 15px;
    font-size: 20px;
}

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

.approach-detail {
    padding: 70px 0;
}

.methodology {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.methodology h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.method-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.background {
    padding: 70px 0;
}

.background h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.background > p {
    text-align: center;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.serve-item {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.serve-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

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

.cta-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.cta-card {
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    color: #2c3e50;
    font-size: 34px;
    margin-bottom: 20px;
}

.cta-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #144272;
}

.contact-info {
    padding: 70px 0;
}

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

.contact-details {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.detail-card h3 {
    color: #1a5490;
    margin-bottom: 15px;
    font-size: 20px;
}

.detail-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

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

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-directions {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.contact-directions h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-directions > p {
    text-align: center;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

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

.direction-card h4 {
    color: #1a5490;
    margin-bottom: 12px;
    font-size: 18px;
}

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

.contact-faq {
    padding: 70px 0;
}

.contact-faq h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

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

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

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

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

.thanks-message {
    color: #5a6c7d;
    font-size: 18px;
    margin-bottom: 30px;
}

.thanks-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-list {
    text-align: left;
    margin: 30px auto;
    max-width: 500px;
    padding-left: 20px;
}

.thanks-list li {
    color: #5a6c7d;
    line-height: 2;
}

.thanks-service {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    color: #1a5490;
    font-weight: 600;
}

.thanks-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 30px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #7f8c8d;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #5a6c7d;
}

.legal-page {
    padding: 70px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    color: #2c3e50;
    font-size: 40px;
    margin-bottom: 10px;
}

.legal-updated {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    color: #1a5490;
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
}

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

.legal-page h4 {
    color: #2c3e50;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

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

.legal-page ul li {
    color: #5a6c7d;
    line-height: 2;
    margin-bottom: 10px;
}

.legal-page a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #144272;
}

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

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

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

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

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

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

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

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

    .card-grid,
    .services-cards,
    .process-grid,
    .testimonial-cards,
    .values-grid,
    .method-cards,
    .serve-grid,
    .directions-grid {
        flex-direction: column;
    }

    .content-split,
    .content-split.reverse,
    .service-detail-card,
    .service-detail-card.reverse,
    .content-layout,
    .contact-layout {
        flex-direction: column;
    }

    .form-card {
        padding: 30px;
    }

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