* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

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

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

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    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: #2c3e50;
}

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

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

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 11px;
    color: #95a5a6;
    padding: 4px 8px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left,
.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.highlight {
    color: #3498db;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.hero-right {
    position: relative;
    background-color: #e8eaed;
}

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

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

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

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

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image,
.split-text {
    flex: 1;
    min-width: 280px;
}

.split-image {
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.split-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-highlight {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-image {
    flex: 0 0 200px;
    background-color: #ecf0f1;
}

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

.service-info {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 16px;
    flex: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.btn-select-service {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

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

blockquote {
    margin: 0 0 32px 0;
    padding: 24px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

blockquote p {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 12px;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #5a6c7d;
    font-size: 14px;
}

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

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d7de;
    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: #3498db;
}

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

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

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.page-hero {
    padding: 80px 0 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: #5a6c7d;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #3498db;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .btn-primary:hover {
    background-color: #ecf0f1;
}

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

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

.service-detail-split {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #ecf0f1;
}

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

.service-detail-info {
    flex: 1;
    padding: 40px;
}

.service-detail-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-detail-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-info ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-info ul li {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.6;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.location-section p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    text-align: center;
}

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

.thanks-content {
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.thanks-message {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-ref {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 24px;
    font-weight: 600;
}

.thanks-info {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

.update-date {
    margin-top: 40px;
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 240px;
    }

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

    .service-detail-image {
        flex: 0 0 300px;
    }

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

    .main-nav {
        gap: 16px;
    }

    .section-title-center {
        font-size: 32px;
    }
}

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

    .hero-left h1 {
        font-size: 28px;
    }

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

    .service-card {
        min-width: 100%;
    }

    .value-item {
        min-width: 100%;
    }

    .booking-form {
        padding: 24px;
    }
}