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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    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: #ffffff;
    color: #1a1a1a;
}

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

.header-left .logo,
.header-left .logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

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

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

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.hero-right {
    background-color: #d5e5f2;
}

.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);
}

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

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

.intro-split {
    display: flex;
}

.intro-left,
.intro-right {
    flex: 1;
}

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

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

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

.intro-right {
    background-color: #e8f4f8;
}

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

.services-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

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

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

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

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

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

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

.form-left,
.form-right {
    flex: 1;
    padding: 80px 60px;
}

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

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

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

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.selected-service-display {
    padding: 14px;
    background-color: #d5f4e6;
    border-radius: 6px;
    font-size: 15px;
    color: #27ae60;
    font-weight: 600;
}

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

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

.trust-split {
    display: flex;
}

.trust-left,
.trust-right {
    flex: 1;
}

.trust-left {
    background-color: #e8f4f8;
}

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

.trust-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

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

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

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

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-disclaimer {
    padding: 20px;
    background-color: #34495e;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.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 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

.about-split,
.values-split {
    display: flex;
}

.about-left,
.about-right,
.values-left,
.values-right {
    flex: 1;
}

.about-left,
.values-left {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-left h2,
.values-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-left p,
.values-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-right,
.values-right {
    background-color: #e8f4f8;
}

.about-right img,
.values-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.values-list li strong {
    color: #2c3e50;
}

.team-split {
    display: flex;
}

.team-left,
.team-right {
    flex: 1;
}

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

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

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

.team-right {
    background-color: #d5e5f2;
}

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

.cta-about,
.cta-services {
    padding: 80px 60px;
    text-align: center;
    background-color: #3498db;
    color: #ffffff;
}

.cta-about h2,
.cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about p,
.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-about .btn-primary,
.cta-services .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-about .btn-primary:hover,
.cta-services .btn-primary:hover {
    background-color: #ecf0f1;
}

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

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
}

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

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

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

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

.service-price-detail {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

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

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

.contact-split {
    display: flex;
    padding: 60px 60px;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left {
    padding-right: 60px;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-right {
    background-color: #e8f4f8;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-extra {
    padding: 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-extra h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-extra p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.thanks-service-info {
    padding: 20px;
    background-color: #d5f4e6;
    border-radius: 6px;
    margin: 20px 0;
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
}

.thanks-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.thanks-image {
    flex: 1;
    background-color: #d5e5f2;
}

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

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

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

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

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

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

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

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

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

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .about-split,
    .values-split,
    .team-split,
    .trust-split,
    .form-section-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

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

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

    .services-header h2,
    .cta-about h2,
    .cta-services h2 {
        font-size: 28px;
    }

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

    .thanks-buttons {
        flex-direction: column;
    }
}