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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

.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: 1rem;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-main a {
    color: #2c3e50;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #2c3e50;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #2c3e50;
    padding: 1rem;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #ffffff;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background-color: #34495e;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(52, 152, 219, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.intro-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.services-preview {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

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

.services-preview h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-color: #34495e;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    padding: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    padding: 0 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    margin-top: 1rem;
}

.philosophy-section {
    background-color: #ecf0f1;
    padding: 6rem 2rem;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 350px;
}

.split-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.split-image {
    flex: 1;
    min-width: 350px;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.trust-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.footer-main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.container-footer {
    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 h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bdc3c7;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 900px;
    margin: 1rem auto 0;
}

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.story-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.team-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 280px;
    text-align: center;
}

.team-photo {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #bdc3c7;
}

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

.team-member h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
}

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

.values-section .split-text {
    order: 2;
}

.values-section .split-image {
    order: 1;
}

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

.values-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.process-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-section {
    background-color: #3498db;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 350px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.service-detail-image {
    flex: 1;
    min-width: 350px;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-price {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 5px;
}

.price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
}

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

.pricing-note-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.pricing-note-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.2rem;
}

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

.contact-info-block {
    flex: 1;
    min-width: 350px;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.8rem;
}

.contact-map {
    flex: 1;
    min-width: 350px;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-approach {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.contact-approach h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-approach p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.faq-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.faq-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #3498db;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.thanks-info {
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

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

.next-steps {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.steps-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.step-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1.5rem;
}

.step-box h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.8rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #5a6c7d;
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 2rem;
    }

    .service-card {
        flex: 0 1 calc(50% - 1rem);
    }

    .testimonials {
        gap: 2rem;
    }

    .testimonial {
        flex: 0 1 calc(50% - 1rem);
    }

    .team-member {
        flex: 0 1 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .services-grid,
    .testimonials,
    .team-grid {
        gap: 1.5rem;
    }

    .service-card,
    .testimonial,
    .team-member {
        flex: 0 1 100%;
    }

    .container-split {
        flex-direction: column;
        gap: 2rem;
    }

    .values-section .split-text,
    .values-section .split-image {
        order: initial;
    }

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

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero .lead {
        font-size: 1.1rem;
    }

    .container-header {
        padding: 0 1rem;
    }

    .intro-section,
    .services-preview,
    .philosophy-section,
    .form-section,
    .trust-section {
        padding: 3rem 1rem;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }

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

    .steps-grid {
        flex-direction: column;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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