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

.main-nav {
    background-color: #2c3e50;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.nav-links a:hover {
    opacity: 0.7;
}

.ad-notice {
    color: #95a5a6;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

.hero-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #34495e;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.content-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.content-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.content-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.content-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.services-intro {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-container p {
    font-size: 1.1rem;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    padding: 0 1.5rem;
    color: #34495e;
    flex: 1;
}

.service-card .price {
    padding: 1rem 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #e74c3c;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.form-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    color: #34495e;
    margin-bottom: 2rem;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-container input,
.form-container textarea {
    padding: 1rem;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-container input:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-container input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.trust-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.testimonials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial .author {
    color: #7f8c8d;
    font-weight: 600;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.values-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    color: #34495e;
    line-height: 1.8;
}

.cta-section {
    padding: 4rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

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

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

.service-detail {
    display: flex;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-price {
    font-size: 1.75rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
    min-height: 400px;
}

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

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info-section {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.info-block p {
    color: #34495e;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.location-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

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

.location-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.location-container > p {
    text-align: center;
    color: #34495e;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.city-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.city-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.city-item p {
    color: #34495e;
    line-height: 1.8;
}

.response-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.response-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
    font-weight: 700;
}

.step p {
    color: #34495e;
    line-height: 1.8;
}

.faq-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

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

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #27ae60;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e74c3c;
    font-weight: 700;
}

.step-item p {
    font-size: 0.95rem;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 2rem;
    background-color: #ffffff;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.last-updated {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
    font-weight: 700;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-container strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-split,
    .split-content,
    .split-content.reverse,
    .contact-info-section,
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-text h1,
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .testimonials {
        flex-direction: column;
    }

    .values-grid,
    .cities-grid {
        flex-direction: column;
    }

    .value-item,
    .city-item {
        flex: 1 1 100%;
    }

    .hero-text,
    .content-text,
    .service-detail-content {
        padding: 2rem;
    }
}