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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97c05c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5db 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: white;
}

.cta-secondary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.intro-offset {
    padding: 100px 0;
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.split-right h2,
.split-left h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.split-right p,
.split-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.trust-segment {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.trust-segment h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    flex: 1;
    max-width: 300px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
}

.opportunity-showcase {
    padding: 100px 0;
}

.location-list {
    margin-top: 30px;
}

.location-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.location-item:last-child {
    border-bottom: none;
}

.location-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.testimonial-band {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.testimonial-band blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    text-align: center;
}

.testimonial-band cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.services-preview {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 20px 20px 10px;
    color: var(--text-dark);
}

.service-card p {
    margin: 0 20px 15px;
    color: var(--text-light);
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 20px;
}

.service-card .btn-select {
    margin: 0 20px 20px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card .btn-select:hover {
    background-color: var(--primary-color);
}

.form-section {
    padding: 100px 0;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.final-push {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-push h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-push p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-cta a {
    display: block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.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 {
    margin: 0;
    flex: 1;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-header {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section,
.insight-section,
.data-section,
.profiles-section,
.risk-section,
.timeline-section,
.philosophy-section,
.cta-section {
    padding: 80px 0;
}

.insight-section {
    background-color: var(--bg-light);
}

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.insight-section blockquote {
    margin-top: 30px;
    padding: 30px;
    background-color: white;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 1.2rem;
}

.data-list {
    list-style: none;
}

.data-list li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.data-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.profile-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.profile-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.profile-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.risk-list {
    margin-top: 30px;
}

.risk-item {
    margin-bottom: 25px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.risk-item h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.timeline {
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-duration {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    white-space: nowrap;
    height: fit-content;
}

.timeline-item h4 {
    margin-bottom: 8px;
}

.benefits-check {
    list-style: none;
    margin: 30px 0;
}

.benefits-check li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.benefits-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.service-detail {
    margin-bottom: 80px;
}

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-detail-text {
    flex: 1.2;
}

.service-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-detail-text h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-detail-text ul {
    margin-bottom: 20px;
}

.service-detail-text ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-detail-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-meta {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-duration {
    color: var(--text-light);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.packages-section {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.packages-section h2 {
    margin-bottom: 20px;
}

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

.process-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

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

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

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

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-info-block p {
    margin-bottom: 8px;
    color: var(--text-light);
}

.info-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #999;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    text-align: center;
}

.contact-cta-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.contact-cta-box h3 {
    margin-bottom: 15px;
}

.info-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.info-card {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    min-width: 280px;
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.alternative-contact {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #e9f5db 0%, #f8f9fa 100%);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-details {
    margin: 60px 0;
    text-align: left;
}

.thanks-details h2 {
    text-align: center;
    margin-bottom: 40px;
}

.next-steps {
    max-width: 700px;
    margin: 0 auto;
}

.next-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-num {
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

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

.while-waiting {
    padding: 80px 0;
}

.while-waiting h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.resource-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resource-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.resource-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-thanks {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.testimonial-thanks blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    text-align: center;
}

.testimonial-thanks cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    opacity: 0.9;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.legal-page ul {
    margin: 15px 0 15px 25px;
}

.legal-page ul li {
    margin-bottom: 10px;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page strong {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

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

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

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

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

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

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

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

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

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

    .timeline-item {
        flex-direction: column;
    }

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

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

    .service-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}