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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.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;
    min-width: 300px;
    margin: 0;
}

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

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

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

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

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

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

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #e74c3c;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231,76,60,0.3);
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

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

.intro-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-section {
    padding: 80px 40px;
    background-color: #fff;
}

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

.services-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 19px;
    color: #7f8c8d;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    border-bottom: 1px solid #ecf0f1;
}

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

.service-image {
    flex: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.form-section-split {
    display: flex;
    background-color: #f8f9fa;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
}

.form-container h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.form-container > p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 520px;
}

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.form-image {
    flex: 1;
    overflow: hidden;
}

.form-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.trust-section {
    padding: 80px 40px;
    background-color: #fff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 260px;
}

.trust-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.trust-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fef5e7;
    border-top: 3px solid #f39c12;
}

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

.disclaimer-content p {
    font-size: 15px;
    color: #7d6608;
    line-height: 1.8;
}

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

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 16px;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    font-size: 15px;
    color: #bdc3c7;
}

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

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

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

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

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

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

.page-hero-content p {
    font-size: 20px;
    color: #7f8c8d;
}

.page-hero-image {
    flex: 1;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
}

.about-content-split {
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

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

.about-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

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

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

.values-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item-split {
    background-color: #fff;
    padding: 40px;
    border-left: 4px solid #3498db;
}

.value-content h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.value-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.team-section-split {
    display: flex;
    align-items: center;
}

.team-image {
    flex: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.team-content {
    flex: 1;
    padding: 60px;
    background-color: #fff;
}

.team-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

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

.cta-content-split h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content-split p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.cta-content-split .cta-primary {
    background-color: #fff;
    color: #3498db;
}

.cta-content-split .cta-primary:hover {
    background-color: #ecf0f1;
    color: #2980b9;
}

.services-detailed {
    padding: 40px;
}

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

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

.service-detail-content {
    flex: 1;
    padding: 60px;
}

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

.service-detail-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin: 28px 0;
}

.select-service-large {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-large:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 440px;
}

.services-cta-split {
    padding: 80px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.services-cta-content p {
    font-size: 19px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

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

.contact-info-split {
    flex: 1;
    padding: 80px 60px;
    background-color: #fff;
}

.contact-info-split h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    color: #e74c3c;
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.contact-image-split {
    flex: 1;
    overflow: hidden;
}

.contact-image-split img {
    width: 100%;
    height: 100%;
}

.access-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.access-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.access-grid-split {
    display: flex;
    gap: 40px;
}

.access-item {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

.access-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.access-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 80px 40px;
    background-color: #27ae60;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: 19px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.contact-cta-content .cta-primary {
    background-color: #fff;
    color: #27ae60;
}

.contact-cta-content .cta-primary:hover {
    background-color: #ecf0f1;
    color: #229954;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

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

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

.thanks-info {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

#selectedServiceMessage {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-return {
    padding: 16px 36px;
    background-color: #3498db;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.btn-secondary {
    padding: 16px 36px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.legal-page {
    padding: 80px 40px;
    background-color: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-section {
    margin-bottom: 40px;
}

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

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

.legal-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.legal-section a:hover {
    color: #2980b9;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 16px 20px;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .service-card-split.reverse,
    .form-section-split,
    .about-content-split,
    .team-section-split,
    .team-section-split.reverse,
    .service-detail-split,
    .service-detail-split.reverse,
    .contact-split-section,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .service-content,
    .form-container,
    .about-text,
    .team-content,
    .service-detail-content,
    .contact-info-split {
        padding: 40px 24px;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .access-grid-split {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}