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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 30px;
    z-index: 999;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.hero-visual {
    width: 100%;
    overflow: hidden;
}

.hero-overlay {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

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

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.story-intro {
    background-color: #ffffff;
}

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

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

.problem-cards {
    background-color: #ecf0f1;
}

.problem-cards h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.card-problem {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 450px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-problem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.card-problem p {
    color: #666;
    line-height: 1.7;
}

.insight-section {
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.services-preview {
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

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

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: scale(1.02);
}

.testimonials-inline {
    background-color: #ffffff;
}

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

.testimonial {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

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

.trust-section {
    background-color: #ecf0f1;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

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

.trust-item p {
    color: #666;
    line-height: 1.7;
}

.form-section {
    background-color: #ffffff;
}

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

.form-section > .container-narrow > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 40px 0;
}

.disclaimer {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    text-align: center;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 220px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.references li a {
    font-size: 13px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 30px 0;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-cookie-accept:hover {
    background-color: #229954;
    transform: scale(1.02);
}

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

.btn-cookie-reject:hover {
    background-color: #7f8c8d;
    transform: scale(1.02);
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.about-content,
.contact-content {
    background-color: #ffffff;
}

.about-story,
.mission-card,
.values-section,
.team-section,
.approach-section {
    margin-bottom: 50px;
}

.about-story h2,
.mission-card h2,
.values-section h2,
.team-section h2,
.approach-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-story p,
.mission-card p,
.team-section p,
.approach-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-card {
    background-color: #ecf0f1;
    padding: 35px;
    border-radius: 8px;
}

.mission-card ul {
    margin-top: 20px;
}

.mission-card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.mission-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

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

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

.value-item p {
    font-size: 15px;
    color: #666;
}

.services-detailed {
    background-color: #f8f9fa;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.service-detail-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
}

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

.service-detail-content {
    padding: 40px;
}

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

.price-tag {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 20px;
}

.services-cta {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: scale(1.02);
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

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

.contact-map-placeholder {
    flex: 1 1 400px;
}

.contact-map-placeholder h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-map-placeholder p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.location-details h3 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #2c3e50;
}

.location-details ul {
    list-style: none;
    margin-bottom: 15px;
}

.location-details ul li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: #555;
}

.location-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
}

.contact-faq {
    background-color: #f8f9fa;
}

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

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

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

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.selected-service-box {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    font-size: 16px;
    color: #666;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: scale(1.02);
}

.thanks-contact {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 16px;
    color: #555;
}

.legal-content {
    background-color: #ffffff;
}

.legal-intro {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

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

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

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

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

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .service-card {
        flex-direction: row;
    }

    .service-image {
        width: 40%;
        height: auto;
    }

    .service-content {
        width: 60%;
    }

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

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

    .service-detail-image {
        width: 45%;
        height: auto;
    }

    .service-detail-content {
        width: 55%;
    }
}

@media (max-width: 767px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .page-header h1 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 28px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
