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

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

.ad-disclosure {
    background-color: #f3f4f6;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.header-main {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

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

.nav-main a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #10b981;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    transition: all 0.3s;
}

.hero-cards {
    padding: 60px 0;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
}

.hero-main {
    padding: 0;
}

.hero-content {
    padding: 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
}

.hero-content p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
}

.hero-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: #10b981;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #e5e7eb;
    color: #1f2937;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.intro-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.intro-card {
    flex: 1;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.intro-number {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 16px;
}

.intro-card p {
    font-size: 16px;
    color: #4b5563;
}

.services-preview {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #111827;
}

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

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

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
}

.service-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #10b981;
    margin: 20px 0;
}

.btn-service {
    background-color: #10b981;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #059669;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 50px;
    border-radius: 12px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #111827;
}

.form-header p {
    font-size: 16px;
    color: #6b7280;
}

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

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

.form-group label {
    font-weight: 600;
    color: #374151;
}

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

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

.btn-submit {
    background-color: #10b981;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.trust-text p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 16px;
}

.trust-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.footer-main {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col ul li a:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 10px;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

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

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

.btn-cookie-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #4b5563;
    color: #ffffff;
}

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

.page-hero {
    padding: 80px 0;
    text-align: center;
    background-color: #f9fafb;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #111827;
}

.page-hero p {
    font-size: 20px;
    color: #6b7280;
}

.about-intro {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.about-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-image-card {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #111827;
}

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

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
}

.value-card p {
    font-size: 16px;
    color: #6b7280;
}

.approach-section {
    padding: 80px 0;
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.approach-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
}

.stats-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.stat-card {
    flex: 1;
    text-align: center;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

.cta-section {
    padding: 80px 0;
}

.cta-card {
    background-color: #10b981;
    color: #ffffff;
    padding: 80px 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-card .btn-primary {
    background-color: #ffffff;
    color: #10b981;
}

.cta-card .btn-primary:hover {
    background-color: #f3f4f6;
}

.services-detailed {
    padding: 80px 0;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.service-detail-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #4b5563;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.pricing-box {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
}

.pricing-box p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-main {
    padding: 60px 0;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111827;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
}

.info-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.contact-image-block {
    flex: 1;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

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

.map-section {
    padding: 60px 0;
    background-color: #f9fafb;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #111827;
}

.map-placeholder {
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #4b5563;
    max-width: 600px;
}

.faq-section {
    padding: 80px 0;
}

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

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

.faq-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.faq-card p {
    font-size: 16px;
    color: #4b5563;
}

.thanks-main {
    padding: 100px 0;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

.thanks-lead {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 8px;
}

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

.next-steps {
    padding: 80px 0;
    background-color: #f9fafb;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #111827;
}

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

.step-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #111827;
}

.step-card p {
    font-size: 16px;
    color: #6b7280;
}

.legal-page {
    padding: 60px 0;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.legal-intro {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #111827;
}

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

.legal-section p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-section a {
    color: #10b981;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-main.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content {
        padding: 40px 30px;
    }

    .intro-cards {
        flex-direction: column;
    }

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

    .trust-content,
    .about-layout,
    .approach-layout,
    .contact-layout {
        flex-direction: column;
    }

    .stats-cards,
    .steps-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

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