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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
}

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

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

.nav-right a {
    color: #2c3e50;
    font-size: 15px;
}

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

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

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

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

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #d5dbdb;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.intro-text {
    padding: 60px 20px;
    background-color: #ffffff;
}

.intro-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.split-section {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

.split-image {
    flex: 1;
    background-color: #bdc3c7;
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

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

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

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

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 17px;
    color: #34495e;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.services-preview {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

.service-card {
    flex: 0 0 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #34495e;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #3498db;
    margin: 20px 25px 25px;
}

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

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

.testimonial-item {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial-item cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 15px;
}

.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    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: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
}

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

.trust-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    max-width: 900px;
    margin: 0 auto;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

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

.footer-content {
    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: 250px;
}

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

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

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

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

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

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

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

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

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

.lead {
    font-size: 20px;
    color: #34495e;
}

.values-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.value-item {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.team-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

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

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

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

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

.service-detail-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #34495e;
}

.service-price {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: bold;
    color: #3498db;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.contact-section {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-map {
    flex: 1;
    background-color: #bdc3c7;
}

.contact-map img {
    width: 100%;
    height: 450px;
}

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

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 30px;
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #34495e;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-info ol {
    padding-left: 25px;
}

.thanks-info ol li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #34495e;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #95a5a6;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 60px 20px;
    min-height: 70vh;
}

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

.updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

.legal-page ul, .legal-page ol {
    margin: 20px 0 20px 25px;
}

.legal-page ul li, .legal-page ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

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

    .split-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 20px;
    }

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

    .value-item {
        flex: 0 0 100%;
    }

    .service-detail {
        flex-direction: column;
        gap: 30px;
    }

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

    .contact-layout {
        flex-direction: column;
    }

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

    .nav-left {
        flex-direction: column;
        gap: 15px;
    }

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