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

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

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

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #ecf9f2;
    padding: 80px 40px 0 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1e3a2e;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 0 auto;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background-color: #d5e8df;
}

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

.intro-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.intro-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 28px;
    line-height: 1.3;
}

.intro-section p {
    font-size: 19px;
    color: #546e7a;
    line-height: 1.8;
}

.values-section {
    padding: 120px 40px;
    background-color: #f8fafb;
}

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

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

.value-card.reverse {
    flex-direction: row-reverse;
}

.value-card:last-child {
    margin-bottom: 0;
}

.value-card img {
    width: 50%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #d5e8df;
}

.value-content {
    width: 50%;
}

.value-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 20px;
}

.value-content p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
}

.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

.container-centered {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 19px;
    color: #546e7a;
    margin-bottom: 60px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    background-color: #f8fafb;
    border: 2px solid #e8eff3;
    border-radius: 12px;
    padding: 36px 28px;
    width: calc(50% - 15px);
    text-align: left;
    transition: border-color 0.3s, transform 0.2s;
}

.service-item:hover {
    border-color: #27ae60;
    transform: translateY(-4px);
}

.service-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 16px;
}

.service-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.select-service-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.text-link {
    display: inline-block;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 20px;
    transition: color 0.3s;
}

.text-link:hover {
    color: #229954;
}

.form-section {
    padding: 100px 40px;
    background-color: #ecf9f2;
}

.form-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 16px;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 48px;
}

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8eff3;
    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: #27ae60;
}

.submit-button {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 100px 40px;
    background-color: #1e3a2e;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: #ecf0f1;
}

.cta-section {
    padding: 100px 40px;
    background-color: #f8fafb;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    color: #546e7a;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #1e3a2e;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.site-footer {
    background-color: #1e3a2e;
    color: #ecf0f1;
    padding: 60px 40px 30px 40px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0bec5;
}

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

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

.footer-column ul li a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #27ae60;
}

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

.disclaimer {
    font-size: 13px;
    color: #90a4ae;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p:last-child {
    font-size: 14px;
    color: #b0bec5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    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 {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    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: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 40px;
    max-width: 600px;
}

.about-hero {
    padding: 100px 40px;
    background-color: #ecf9f2;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1e3a2e;
    margin-bottom: 24px;
}

.about-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 24px;
    margin-top: 48px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 40px;
    background-color: #f8fafb;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a2e;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    width: calc(33.333% - 27px);
    text-align: center;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.services-hero {
    padding: 100px 40px;
    background-color: #ecf9f2;
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1e3a2e;
    margin-bottom: 24px;
}

.services-hero p {
    font-size: 20px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.services-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1000px;
    margin: 0 auto 80px auto;
    padding: 48px;
    background-color: #f8fafb;
    border-radius: 12px;
    border-left: 5px solid #27ae60;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 16px;
}

.service-detail .price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

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

.service-detail ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail ul li {
    font-size: 16px;
    color: #546e7a;
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.service-detail ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.contact-hero {
    padding: 100px 40px;
    background-color: #ecf9f2;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1e3a2e;
    margin-bottom: 24px;
}

.contact-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a2e;
    margin-bottom: 40px;
}

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

.info-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 12px;
}

.info-item p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.legal-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1e3a2e;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a2e;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .value-card {
        flex-direction: column;
    }

    .value-card.reverse {
        flex-direction: column;
    }

    .value-card img,
    .value-content {
        width: 100%;
    }

    .service-item {
        width: 100%;
    }

    .team-member {
        width: calc(50% - 20px);
    }
}

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

    .nav-toggle {
        display: flex;
    }

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

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

    .stats-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .team-member {
        width: 100%;
    }
}