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

.main-nav {
    background-color: #1a3a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    color: #f0f4f0;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #8bc34a;
}

.hero-section {
    min-height: 70vh;
    background: linear-gradient(rgba(26, 58, 46, 0.7), rgba(26, 58, 46, 0.8)), url('https://images.unsplash.com/photo-1511497584788-876760111969?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8bc34a;
    color: #1a3a2e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-hero:hover {
    background-color: #7cb342;
    transform: translateY(-2px);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.intro-section {
    background-color: #f5f8f5;
}

.intro-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #455a64;
}

.impact-section {
    background-color: #1a3a2e;
    color: #ffffff;
}

.impact-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.impact-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: rgba(139, 195, 74, 0.1);
    border-radius: 8px;
}

.impact-card h3 {
    font-size: 3rem;
    color: #8bc34a;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.impact-card p {
    font-size: 1.1rem;
    color: #d4e4d9;
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.problem-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #455a64;
}

.approach-section {
    background-color: #f5f8f5;
}

.approach-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.approach-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #455a64;
}

.services-pricing-section {
    background-color: #ffffff;
}

.services-pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
    font-weight: 700;
    text-align: center;
}

.services-pricing-section > .container-narrow > p {
    text-align: center;
    font-size: 1.15rem;
    color: #455a64;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    padding: 2.5rem;
    background-color: #f5f8f5;
    border-radius: 8px;
    border-left: 4px solid #8bc34a;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1.05rem;
    color: #455a64;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    color: #1a3a2e;
    font-weight: 800;
    margin-top: 1rem;
}

.form-section {
    background-color: #1a3a2e;
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.form-section h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #d4e4d9;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #4a6b5a;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f5f8f5;
    color: #2c3e50;
}

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

.btn-primary {
    padding: 0.75rem 1.5rem;
    background-color: #8bc34a;
    color: #1a3a2e;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #7cb342;
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #8bc34a;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8bc34a;
    color: #1a3a2e;
}

.evidence-section {
    background-color: #f5f8f5;
}

.evidence-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a3a2e;
    font-weight: 700;
}

blockquote {
    font-size: 1.2rem;
    color: #455a64;
    border-left: 4px solid #8bc34a;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #1a3a2e;
    font-weight: 600;
}

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

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a3a2e;
    text-align: center;
    font-weight: 700;
}

.process-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background-color: #f5f8f5;
    border-radius: 8px;
}

.step-number {
    font-size: 2rem;
    color: #8bc34a;
    font-weight: 800;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    color: #1a3a2e;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-step p {
    font-size: 1rem;
    color: #455a64;
}

.cta-section {
    background-color: #1a3a2e;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #d4e4d9;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8bc34a;
    color: #1a3a2e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #7cb342;
    transform: translateY(-2px);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8bc34a;
    color: #1a3a2e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #7cb342;
    transform: translateY(-2px);
}

.final-section {
    background-color: #f5f8f5;
}

.final-section p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.main-footer {
    background-color: #0d1f17;
    color: #d4e4d9;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-column h4 {
    color: #8bc34a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    color: #d4e4d9;
    margin-bottom: 0.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #d4e4d9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8bc34a;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid #2a4a3a;
    color: #9ba8a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #d4e4d9;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.page-hero {
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.2rem;
    color: #d4e4d9;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.values-section {
    background-color: #f5f8f5;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a3a2e;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #8bc34a;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: #455a64;
}

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

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.team-section p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.approach-detail {
    background-color: #f5f8f5;
}

.approach-detail h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.approach-detail p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.detail-list {
    list-style-position: inside;
    font-size: 1.05rem;
    color: #455a64;
    margin-top: 1rem;
}

.detail-list li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

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

.partnerships-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.partnerships-section p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.credentials-section {
    background-color: #f5f8f5;
}

.credentials-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.credentials-section p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.services-detail {
    background-color: #f5f8f5;
}

.service-block {
    background-color: #ffffff;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 6px solid #8bc34a;
}

.service-block h2 {
    font-size: 2.2rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-block h3 {
    font-size: 1.6rem;
    color: #1a3a2e;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}

.service-block p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1rem;
}

.service-price-tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #8bc34a;
    color: #1a3a2e;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style-position: inside;
    font-size: 1.05rem;
    color: #455a64;
    margin: 1rem 0;
}

.service-list li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

.service-selection {
    background-color: #1a3a2e;
    color: #ffffff;
    text-align: center;
}

.service-selection h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-selection p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #d4e4d9;
}

.additional-info {
    background-color: #ffffff;
}

.additional-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.additional-info p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.contact-info {
    background-color: #f5f8f5;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #8bc34a;
}

.contact-card h2 {
    font-size: 1.6rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    font-size: 1.05rem;
    color: #455a64;
    line-height: 1.8;
}

.contact-card a {
    color: #1a3a2e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #8bc34a;
}

.contact-context {
    background-color: #ffffff;
}

.contact-context h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.contact-context p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.context-list {
    list-style-position: inside;
    font-size: 1.05rem;
    color: #455a64;
    margin: 1rem 0;
}

.context-list li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

.inquiry-types {
    background-color: #f5f8f5;
}

.inquiry-types h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a3a2e;
    font-weight: 700;
}

.inquiry-block {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #8bc34a;
}

.inquiry-block h3 {
    font-size: 1.5rem;
    color: #1a3a2e;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.inquiry-block p {
    font-size: 1.05rem;
    color: #455a64;
}

.service-area {
    background-color: #ffffff;
}

.service-area h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.service-area p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.response-expectation {
    background-color: #f5f8f5;
}

.response-expectation h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.response-expectation p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.thanks-hero {
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-hero p {
    font-size: 1.2rem;
    color: #d4e4d9;
}

.thanks-content {
    background-color: #f5f8f5;
}

.thanks-message h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    font-weight: 700;
}

.thanks-message h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #1a3a2e;
    font-weight: 700;
}

.thanks-message p {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 1.2rem;
}

.service-selected {
    padding: 1rem;
    background-color: #8bc34a;
    color: #1a3a2e;
    border-radius: 4px;
    font-weight: 600;
}

.resource-list {
    list-style-position: inside;
    font-size: 1.05rem;
    color: #455a64;
    margin: 1rem 0;
}

.resource-list li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

.resource-list a {
    color: #1a3a2e;
    text-decoration: underline;
}

.resource-list a:hover {
    color: #8bc34a;
}

.next-steps {
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a3a2e;
    text-align: center;
    font-weight: 700;
}

.next-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.next-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f5f8f5;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #8bc34a;
}

.next-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.next-card h3 {
    font-size: 1.5rem;
    color: #1a3a2e;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.next-card p {
    font-size: 1.05rem;
    color: #455a64;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
    font-weight: 800;
}

.update-date {
    font-size: 0.95rem;
    color: #78909c;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a3a2e;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    color: #455a64;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    font-size: 1.05rem;
    color: #455a64;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #1a3a2e;
    font-weight: 600;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #8bc34a;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .container-split {
        flex-direction: column;
    }

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

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

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

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .thanks-hero h1 {
        font-size: 2.2rem;
    }
}