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

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

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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
}

.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navigation {
    display: flex;
    gap: 30px;
}

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

.navigation a:hover {
    color: #3498db;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-visual {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    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));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-overlay p {
    color: #ecf0f1;
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-cards {
    padding: 60px 0;
    background-color: #ffffff;
}

.card-grid-intro {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.info-card p {
    color: #546e7a;
    line-height: 1.7;
}

.services-showcase {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #546e7a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-content p {
    color: #546e7a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 18px;
}

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

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

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-card {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.form-intro {
    color: #546e7a;
    margin-bottom: 30px;
    font-size: 17px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-section {
    padding: 70px 0;
    background-color: #ffffff;
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    color: #546e7a;
}

.process-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

.process-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

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

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-card p {
    color: #546e7a;
}

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

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer-footer {
    font-size: 13px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 10px auto 0;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
}

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

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

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

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

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

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

.page-hero {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 60px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.7));
    display: flex;
    align-items: center;
}

.page-hero-overlay h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 16px;
}

.page-hero-overlay p {
    color: #ecf0f1;
    font-size: 20px;
}

.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.content-section p {
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.stats-inline {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #546e7a;
}

.image-text-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.image-text-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.image-block {
    flex: 1;
    min-width: 320px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.image-block img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.text-block {
    flex: 1;
    min-width: 320px;
}

.text-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.text-block p {
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.values-section {
    padding: 70px 0;
    background-color: #ffffff;
}

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

.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

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

.value-card p {
    color: #546e7a;
    line-height: 1.7;
}

.team-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

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

.cta-section-about {
    padding: 70px 0;
    background-color: #3498db;
    text-align: center;
}

.cta-section-about h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 16px;
}

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

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
}

.services-detail-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

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

.services-intro p {
    font-size: 17px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.services-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    height: 380px;
    background-size: cover;
    background-position: center;
}

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

.service-detail-text {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-detail-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-text p {
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    color: #546e7a;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin: 20px 0;
}

.included-section {
    padding: 70px 0;
    background-color: #ffffff;
}

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

.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.included-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 240px;
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

.included-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.included-item p {
    color: #546e7a;
}

.form-section-services {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

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

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

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

.contact-item p {
    color: #546e7a;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 320px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.reach-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.reach-section p {
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.faq-section {
    padding: 70px 0;
    background-color: #ffffff;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.faq-item p {
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.thanks-card {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

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

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #d4edda;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.selected-service-display {
    color: #155724;
    font-size: 17px;
}

.thanks-info {
    margin: 40px 0;
    text-align: left;
}

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

.next-steps {
    list-style: decimal;
    padding-left: 24px;
    color: #546e7a;
}

.next-steps li {
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

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

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

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

.additional-info-thanks {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.additional-info-thanks p {
    color: #546e7a;
    line-height: 1.8;
    font-size: 17px;
}

.legal-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.legal-section h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-section p {
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section ul {
    color: #546e7a;
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table thead {
    background-color: #ecf0f1;
}

.cookies-table th {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
}

.cookies-table td {
    padding: 14px;
    color: #546e7a;
    border: 1px solid #bdc3c7;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .card-grid-intro {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

    .thanks-card {
        padding: 40px 30px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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