* {
    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: #333;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-left p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #f0f4f8;
}

.page-hero-split .hero-left {
    padding: 60px;
}

.page-hero-split .hero-left h1 {
    font-size: 2.5rem;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    background-color: #e3e9f0;
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.intro-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.intro-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.services-grid {
    padding: 80px 40px;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 400px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    padding: 20px 20px 10px;
}

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

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    padding: 10px 20px;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-select-service.selected {
    background-color: #27ae60;
}

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

.form-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.form-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.selected-service-display p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.selected-service-display strong {
    color: #2c3e50;
}

.form-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
}

.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 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-split {
    display: flex;
    min-height: 500px;
}

.trust-left {
    flex: 1;
    background-color: #dce4eb;
    overflow: hidden;
}

.trust-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.trust-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

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

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

.disclaimer-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.disclaimer-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-left p {
    color: #bdc3c7;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-email {
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.content-split {
    display: flex;
    min-height: 500px;
}

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

.content-left {
    flex: 1;
    background-color: #e8eef3;
    overflow: hidden;
}

.content-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.content-split.reverse .content-left {
    background-color: #ffffff;
}

.content-split.reverse .content-right {
    background-color: #f8f9fa;
}

.content-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.content-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    max-width: 600px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.team-split {
    display: flex;
    min-height: 500px;
}

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

.team-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.team-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.team-right {
    flex: 1;
    background-color: #dde5ec;
    overflow: hidden;
}

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

.service-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 0;
}

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

.detail-left {
    flex: 1;
    background-color: #e5eaef;
    overflow: hidden;
}

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

.detail-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-detail-split.reverse .detail-left {
    background-color: #ffffff;
}

.service-detail-split.reverse .detail-right {
    background-color: #f8f9fa;
}

.detail-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 25px;
}

.detail-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}

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

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

.contact-info-split {
    display: flex;
    min-height: 500px;
}

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

.info-left h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.info-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.info-right h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.info-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.region-list {
    list-style: none;
    margin: 20px 0;
}

.region-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.region-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.map-section {
    padding: 80px 40px;
    background-color: #f0f4f8;
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    background-color: #e0e5ea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #666;
}

.response-info {
    padding: 80px 40px;
    background-color: #ffffff;
}

.response-content {
    max-width: 900px;
    margin: 0 auto;
}

.response-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.response-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-split {
    display: flex;
    min-height: 600px;
}

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

.thanks-left h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-left p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-bottom: 30px;
}

.thanks-next h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-steps {
    list-style: none;
    margin-bottom: 40px;
}

.thanks-steps li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.thanks-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.thanks-right {
    flex: 1;
    background-color: #dde6ed;
    overflow: hidden;
}

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

.info-section {
    background-color: #fff4e6;
    padding: 60px 40px;
}

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

.info-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

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

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

.legal-page h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

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

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

.cookie-table th {
    background-color: #f0f4f8;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #ddd;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .content-split,
    .team-split,
    .service-detail-split,
    .contact-info-split,
    .thanks-split,
    .page-hero-split {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

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

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

    .footer-split {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}