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

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-right a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #007bff;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #495057;
}

.hero-right {
    flex: 1;
    background-color: #e3e8ed;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.cta-primary:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #007bff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #007bff;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
}

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

.intro-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.intro-text {
    flex: 1;
    padding: 0 60px;
}

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

.intro-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #495057;
}

.services-preview {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-card.selected {
    border: 3px solid #007bff;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background-color: #dee2e6;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 25px 15px;
    color: #1a252f;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #6c757d;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin: 20px 25px;
}

.service-card .select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #0056b3;
}

.form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.form-notice.success {
    background-color: #d4edda;
    color: #155724;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #495057;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.trust-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.trust-text {
    flex: 1;
    padding-right: 60px;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.trust-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #495057;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 20px;
}

.trust-image {
    flex: 1;
    background-color: #dee2e6;
}

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

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

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 60px 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #343a40;
    padding-top: 25px;
    text-align: center;
}

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

.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 30px;
    display: none;
    z-index: 10000;
}

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

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

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cookie-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #e9ecef;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.cookie-content a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

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

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

.page-header p {
    font-size: 20px;
    color: #6c757d;
}

.about-split {
    display: flex;
    padding: 100px 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.about-text {
    flex: 1;
    padding: 0 60px;
}

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

.about-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #495057;
}

.values-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1;
    max-width: 350px;
}

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

.value-item p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.6;
}

.process-split {
    display: flex;
    align-items: center;
    padding: 100px 60px;
}

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

.process-text {
    flex: 1;
    padding: 0 60px;
}

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

.process-list {
    list-style: none;
    counter-reset: process-counter;
    margin-bottom: 25px;
}

.process-list li {
    font-size: 18px;
    padding: 15px 0;
    padding-left: 50px;
    position: relative;
    color: #495057;
    counter-increment: process-counter;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.process-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.cta-section {
    padding: 100px 60px;
    text-align: center;
    background-color: #007bff;
}

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

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #007bff;
}

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

.services-detailed {
    padding: 60px 60px 100px;
}

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

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

.service-detail-left {
    flex: 1;
    background-color: #dee2e6;
}

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

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

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

.service-detail-right p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    margin: 25px 0;
}

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

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

.faq-item {
    max-width: 800px;
    margin: 0 auto 35px;
}

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

.faq-item p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #495057;
}

.contact-item p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.7;
}

.non-clickable-email {
    color: #6c757d;
    pointer-events: none;
}

.contact-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.map-notice {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.map-notice h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a252f;
}

.map-notice p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.7;
}

.thanks-section {
    padding: 150px 60px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #28a745;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.7;
}

.thanks-content .cta-primary {
    margin-top: 30px;
}

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

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

.legal-date {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

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

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

.legal-page ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .about-split,
    .process-split,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-text,
    .trust-text,
    .about-text,
    .process-text {
        padding: 40px;
    }

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

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

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

    .split-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}