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

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

.navbar {
    width: 100%;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
    margin-right: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.25rem 0.75rem;
    border: 1px solid #34495e;
    border-radius: 3px;
    margin-right: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #f39c12;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #16213e;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #34495e;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #e67e22;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.25rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.0625rem;
    color: #34495e;
    margin-bottom: 1.25rem;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.split-layout-reverse {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.services-showcase {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services-showcase h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-info {
    padding: 1.75rem;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 0.9375rem;
    color: #555555;
    margin-bottom: 1.25rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.875rem;
    background-color: #16213e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #0f1626;
}

.form-section {
    padding: 5rem 0;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.25rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #555555;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-choose {
    padding: 5rem 0;
    background-color: #ffffff;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-section h3 {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 0.9375rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #f39c12;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8125rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #16213e;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    color: #ecf0f1;
    font-size: 0.9375rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-secondary {
    padding: 0.75rem 1.5rem;
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.page-header {
    background-color: #16213e;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #bdc3c7;
}

.about-content {
    padding: 5rem 0;
    background-color: #ffffff;
}

.values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

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

.value-item h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.value-item p {
    color: #555555;
    line-height: 1.7;
}

.experience-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.certifications-section {
    padding: 5rem 0;
    background-color: #ecf0f1;
    text-align: center;
}

.certifications-section h2 {
    font-size: 2.25rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.certifications-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.0625rem;
    color: #34495e;
    line-height: 1.8;
}

.services-detail {
    padding: 3rem 0;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.875rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.0625rem;
    color: #34495e;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.cta-section {
    padding: 5rem 0;
    background-color: #16213e;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
}

.contact-page {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 2.25rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.25rem;
    color: #16213e;
    margin-bottom: 0.75rem;
}

.info-item p {
    font-size: 1.0625rem;
    color: #34495e;
    line-height: 1.7;
}

.info-item .note {
    font-size: 0.9375rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.map-placeholder {
    padding: 3rem 0;
    background-color: #ecf0f1;
}

.map-notice {
    text-align: center;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.map-notice p {
    font-size: 1.0625rem;
    color: #34495e;
}

.thanks-page {
    padding: 5rem 0;
    background-color: #f8f9fa;
    min-height: 50vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.125rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-content a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

.thanks-content a:hover {
    text-decoration: underline;
}

#service-confirmation {
    font-weight: 600;
    color: #16213e;
}

.legal-page {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.legal-page h1 {
    font-size: 2.75rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.update-date {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.875rem;
    color: #16213e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.375rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    font-size: 1.0625rem;
    color: #34495e;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.0625rem;
    color: #34495e;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-page a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

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

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

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-right {
        min-height: 400px;
    }

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

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-secondary {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .page-header h1 {
        font-size: 2.25rem;
    }

    .hero-content h1 {
        font-size: 1.875rem;
    }

    .services-showcase h2,
    .values-section h2,
    .cta-section h2 {
        font-size: 1.875rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}