* {
    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: #2c3e50;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    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;
    margin: 0;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.header-left {
    flex: 1;
}

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

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

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

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

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

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

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

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

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

.split-left {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.split-right p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.process-list {
    margin-left: 20px;
    margin-top: 20px;
}

.process-list li {
    margin-bottom: 15px;
    font-size: 17px;
}

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

.services-header-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

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

.service-price {
    padding: 0 25px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.btn-select-service {
    margin: 0 25px 25px;
    padding: 12px 25px;
    width: calc(100% - 50px);
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 15px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

.footer-col {
    flex: 1 1 200px;
}

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

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

.page-hero {
    padding: 100px 40px;
    text-align: center;
    background-color: #ecf0f1;
}

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

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

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

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

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

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
}

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

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

.cta-centered {
    padding: 80px 40px;
    text-align: center;
    background-color: #fff;
}

.cta-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-centered p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    min-height: 450px;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-left {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
}

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

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

.service-detail-right p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    margin: 20px 0 30px 20px;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

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

.contact-info-section {
    padding: 40px;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-left {
    flex: 1;
    padding: 60px;
}

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

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

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

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

.contact-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.thanks-content {
    max-width: 700px;
}

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

.thanks-message {
    font-size: 22px;
    color: #3498db;
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

#service-confirmation {
    font-size: 17px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 40px;
}

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

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

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

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

    .hero-left,
    .split-right,
    .service-detail-right,
    .contact-left {
        padding: 40px;
    }

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

    .split-right h2,
    .values-section h2,
    .testimonials-section h2,
    .services-header-centered h2 {
        font-size: 32px;
    }

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

    .testimonial-card,
    .value-card {
        flex: 1 1 100%;
    }
}