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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f4f;
}

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

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

.nav-links a:hover {
    color: #2c5f4f;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.hero-asymmetric {
    min-height: 90vh;
    background: linear-gradient(135deg, #f5f7f9 0%, #e8ede8 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    padding: 2rem;
    z-index: 10;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.hero-image-float {
    flex: 1;
    min-width: 400px;
    position: relative;
    margin-top: -4rem;
}

.hero-image-float img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #d4e0d9;
}

.story-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.story-container-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}

.story-text-primary {
    flex: 1.5;
    min-width: 350px;
}

.story-text-primary h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-text-primary p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.story-image-aside {
    flex: 1;
    min-width: 300px;
    margin-top: 3rem;
}

.story-image-aside img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e8ede8;
}

.insight-block {
    padding: 5rem 2rem;
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
}

.insight-content-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.insight-visual {
    flex: 1;
    min-width: 350px;
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #d9e3da;
}

.insight-text {
    flex: 1.3;
    min-width: 350px;
    padding: 2rem;
}

.insight-text h2 {
    font-size: 2.3rem;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #2c3e50;
}

.citation {
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    padding: 0 0.2rem;
}

.citation:hover {
    text-decoration: underline;
}

.problem-amplification {
    padding: 6rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
}

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

.problem-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-cards-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    background-color: rgba(255,255,255,0.95);
    color: #2c3e50;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.problem-card-elevated {
    margin-top: -2rem;
}

.problem-card h3 {
    color: #2c5f4f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    line-height: 1.7;
}

.solution-intro {
    padding: 5rem 2rem;
    background-color: #f5f7f9;
    text-align: center;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
}

.solution-content h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.solution-content p {
    font-size: 1.2rem;
    color: #34495e;
}

.services-preview {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.services-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-block {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-large {
    flex: 2;
    min-width: 400px;
}

.service-medium {
    flex: 1.5;
    min-width: 350px;
}

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

.service-block img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8ede8;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.service-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.cta-link {
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #1a3a2f;
    text-decoration: underline;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8ede8 0%, #f5f7f9 100%);
}

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

.testimonial-container h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c5f4f;
    margin-bottom: 3rem;
}

.testimonials-staggered {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 700px;
}

.testimonial-left {
    align-self: flex-start;
    margin-left: 0;
}

.testimonial-right {
    align-self: flex-end;
    margin-right: 0;
}

.testimonial-center {
    align-self: center;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #34495e;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f4f;
    font-style: normal;
}

.trust-building {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.trust-text {
    flex: 1.2;
    min-width: 350px;
}

.trust-text h2 {
    font-size: 2.4rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.trust-visual {
    flex: 1;
    min-width: 350px;
}

.trust-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e8ede8;
}

.pricing-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.pricing-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 2.5rem;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.pricing-featured {
    border-color: #2c5f4f;
    border-width: 3px;
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    transform: scale(1.03);
}

.pricing-card h3 {
    font-size: 1.7rem;
    color: #2c5f4f;
    margin-bottom: 0.5rem;
}

.service-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #ecf0f1;
    color: #34495e;
}

.service-features li:before {
    content: "✓ ";
    color: #2c5f4f;
    font-weight: 700;
    margin-right: 0.5rem;
}

.cta-main {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2c5f4f 0%, #1a3a2f 100%);
    color: #ffffff;
}

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

.cta-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.cta-container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.service-form {
    background-color: rgba(255,255,255,0.98);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    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: #2c5f4f;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a3a2f;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #e0e0e0;
    border-radius: 4px;
}

.main-footer {
    background-color: #1a3a2f;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #a8c4b8;
}

.footer-section p {
    color: #d0d8d4;
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: #ffffff;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #a8c4b8;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.5rem;
    color: #d0d8d4;
    line-height: 1.6;
}

.footer-references a {
    color: #a8c4b8;
    text-decoration: none;
}

.footer-references a:hover {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #a8c4b8;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: #2c5f4f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1a3a2f;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, #2c5f4f 0%, #1a3a2f 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    color: #d0d8d4;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-text-block {
    flex: 1.3;
    min-width: 350px;
}

.about-text-block h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.about-text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.about-image-offset {
    flex: 1;
    min-width: 350px;
    margin-top: 2rem;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e8ede8;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f5f7f9;
}

.values-container {
    max-width: 1300px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c5f4f;
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.value-card-large {
    flex: 2;
    min-width: 350px;
}

.value-card-medium {
    flex: 1.5;
    min-width: 300px;
}

.value-card-small {
    flex: 1;
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.value-card p {
    color: #34495e;
    line-height: 1.7;
}

.team-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.team-image {
    flex: 1;
    min-width: 350px;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #e8ede8;
}

.team-text {
    flex: 1.3;
    min-width: 350px;
}

.team-text h2 {
    font-size: 2.3rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
    line-height: 1.7;
}

.commitment-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e8ede8 0%, #f5f7f9 100%);
}

.commitment-content {
    max-width: 1100px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c5f4f;
    margin-bottom: 3rem;
}

.commitment-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-item {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 5px solid #2c5f4f;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.commitment-item p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin: 0;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-card:last-child {
    border-bottom: none;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e8ede8;
}

.service-detail-content {
    flex: 1.3;
    min-width: 350px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: #2c5f4f;
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.7rem 0;
    color: #34495e;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "→ ";
    color: #2c5f4f;
    font-weight: 700;
    margin-right: 0.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-service:hover {
    background-color: #1a3a2f;
    transform: translateY(-2px);
}

.services-cta {
    padding: 4rem 2rem;
    background-color: #f5f7f9;
    text-align: center;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 2.3rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #2c5f4f;
    color: #ffffff;
}

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

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

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

.contact-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    min-width: 350px;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e8ede8;
}

.contact-additional {
    padding: 4rem 2rem;
    background-color: #f5f7f9;
    text-align: center;
}

.contact-additional-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-additional-content h2 {
    font-size: 2.3rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.contact-additional-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    min-height: 70vh;
}

.thanks-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.thanks-content {
    flex: 1.3;
    min-width: 350px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f5f7f9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    margin-bottom: 2rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.thanks-image {
    flex: 1;
    min-width: 350px;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e8ede8;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.legal-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c5f4f;
    margin: 2.5rem 0 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 1.5rem 0 0.8rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: #34495e;
    margin: 1.2rem 0 0.6rem;
}

.legal-container p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #2c5f4f;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1a3a2f;
}

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.95rem;
    }

    .pricing-cards-asymmetric,
    .services-asymmetric-grid,
    .values-grid-asymmetric {
        flex-direction: column;
    }

    .service-large,
    .service-medium,
    .service-small,
    .value-card-large,
    .value-card-medium,
    .value-card-small {
        min-width: 100%;
    }

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

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .ad-disclosure {
        font-size: 0.75rem;
    }
}