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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 70px;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-disclaimer {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
    margin: 0 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    margin-bottom: 60px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(135deg, rgba(52,152,219,0.92) 0%, rgba(41,128,185,0.88) 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 650px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #fff;
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.intro-section {
    padding: 60px 20px;
    background-color: #fff;
}

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

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.features-grid {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

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

.feature-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.feature-card h3 {
    padding: 20px 20px 10px;
    color: #2c3e50;
    font-size: 1.3rem;
}

.feature-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.services-section {
    padding: 70px 20px;
    background-color: #fff;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
    max-width: 380px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #34495e;
}

.service-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 70px 20px;
    background-color: #ecf0f1;
}

.form-section.hidden {
    display: none;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-card h2 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.selected-service {
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #34495e;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    padding: 70px 20px;
    background-color: #fff;
}

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

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 360px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #34495e;
}

.final-cta {
    padding: 70px 20px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer-section {
    padding: 20px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
}

.disclaimer-section p {
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1 1 500px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.btn-cookie-reject:hover {
    background-color: #6c7a7b;
}

.page-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 70px 20px;
    background-color: #fff;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    object-fit: cover;
    background-color: #e8e8e8;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-section {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 25px);
    min-width: 250px;
    max-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #34495e;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.business-model-section {
    padding: 70px 20px;
    background-color: #fff;
}

.business-model-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.business-model-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.services-detailed {
    padding: 70px 20px;
    background-color: #fff;
}

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

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

.service-detail-image {
    flex: 1 1 400px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-pricing {
    margin: 25px 0;
    padding: 15px;
    background-color: #f0f8ff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.price-label {
    font-weight: 600;
    color: #34495e;
    margin-right: 10px;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
}

.contact-section {
    padding: 70px 20px;
    background-color: #fff;
}

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

.contact-info-card,
.contact-map-card {
    flex: 1 1 400px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-info-card h2,
.contact-map-card h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #34495e;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.map-placeholder {
    margin-bottom: 20px;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.contact-map-card p {
    color: #666;
    line-height: 1.6;
}

.contact-additional {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.help-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    max-width: 350px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.help-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #34495e;
}

.help-card p {
    color: #666;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 20px;
    background-color: #fff;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.thanks-card h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-confirmation {
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

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

.btn-secondary {
    background-color: #95a5a6;
    color: #fff;
}

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

.next-steps {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.step-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    max-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #34495e;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.legal-page {
    padding: 70px 20px;
    background-color: #fff;
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-page p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
    color: #555;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .nav-disclaimer {
        margin: 10px 0;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-reject {
        width: 100%;
    }
}