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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2d3e50;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
}

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

.intro-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.services-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

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

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.card-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
    flex-grow: 1;
}

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

.select-service {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
    color: #555;
}

.trust-content img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.form-section > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    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: #27ae60;
}

.submit-button {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 30px);
    max-width: 350px;
    min-width: 280px;
    border-left: 4px solid #27ae60;
}

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

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

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

.footer-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.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: 2000;
    display: none;
}

.cookie-banner.active {
    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-buttons {
    display: flex;
    gap: 15px;
}

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

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

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

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

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 60px 20px;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-intro img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.values-section {
    margin-bottom: 80px;
}

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

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

.value-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 30px);
    max-width: 500px;
    min-width: 280px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section,
.commitment-section {
    margin-bottom: 60px;
}

.team-section h2,
.commitment-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.team-section p,
.commitment-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

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

.approach-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.approach-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.services-detail-section {
    padding: 60px 20px;
}

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

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

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

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

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

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.price-highlight {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.service-detail-content ul {
    margin: 20px 0 20px 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-top: 40px;
}

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

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

.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.contact-description {
    flex: 1.5;
    min-width: 300px;
}

.contact-description h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-description h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact-description p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.contact-image {
    margin: 30px 0;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.cta-box {
    text-align: center;
    padding: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 12px;
}

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

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
}

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

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 50px;
    color: #555;
}

.thanks-details {
    max-width: 900px;
    margin: 0 auto 50px;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

.step {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #27ae60;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-confirmation h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.service-confirmation p {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.legal-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-section h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.legal-section ul {
    margin: 15px 0 15px 30px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.legal-section a {
    color: #27ae60;
    text-decoration: none;
}

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

.cookie-table {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .about-intro,
    .approach-content,
    .service-detail-card {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

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