/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3324;
}

/* Navigation */
.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-brand a {
    color: #1a1a1a;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    flex-direction: column;
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    padding: 0.8rem 1.5rem;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f5f5f5;
    color: #2d5a3d;
}

/* Editorial Container */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Section */
.article-hero {
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.hero-text-center h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.meta-sep {
    color: #999;
}

/* Lead Text */
.lead-text {
    font-size: 1.25rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

/* Images */
.inline-image {
    margin: 2.5rem 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.image-caption {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

/* Blockquotes */
.article-quote {
    margin: 2.5rem 0;
    padding: 1.8rem 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2d5a3d;
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
}

.article-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

/* Stats and Highlights */
.stat-highlight {
    margin: 2.5rem 0;
    padding: 2rem 1.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    text-align: center;
    border-radius: 4px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem 1.5rem;
    background-color: #f0f5f1;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #555;
    font-style: normal;
}

/* CTAs */
.inline-cta {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin: 1.5rem 0;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #1a3324;
    color: #ffffff;
}

.section-cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin: 1.5rem 0;
    transition: background-color 0.3s ease;
}

.section-cta-button:hover {
    background-color: #333;
    color: #ffffff;
}

/* Lists */
.article-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    padding-left: 0.5rem;
}

.article-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Numbered Insights */
.numbered-insights {
    margin: 2rem 0;
}

.insight-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.insight-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insight-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.insight-content p {
    margin-bottom: 0;
}

/* Urgency Box */
.urgency-box {
    margin: 2.5rem 0;
    padding: 2rem 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid: #ff9800;
    border-radius: 4px;
}

.urgency-box h3 {
    margin-top: 0;
    color: #856404;
}

.urgency-box p {
    margin-bottom: 0.8rem;
    color: #533f03;
}

.urgency-box p:last-child {
    margin-bottom: 0;
}

/* Key Factors */
.key-factors {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.factor-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.factor-card h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.factor-card p {
    margin-bottom: 0;
}

/* Service Preview */
.service-preview {
    margin: 3rem 0;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.service-preview h3 {
    margin-top: 0;
    text-align: center;
    font-size: 1.6rem;
}

.service-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

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

.service-card {
    padding: 1.8rem;
    background-color: #ffffff;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    position: relative;
}

.service-card.featured {
    border-color: #2d5a3d;
    background-color: #f0f5f1;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.service-desc {
    margin-bottom: 1.2rem;
    color: #555;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1.2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: #1a3324;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-link-arrow {
    color: #2d5a3d;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Testimonial Block */
.testimonial-block {
    margin: 3rem 0;
    padding: 2.5rem 1.5rem;
    background-color: #f0f5f1;
    border-radius: 4px;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-box {
    margin-top: 1rem;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-style: normal;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    font-style: normal;
}

/* Forms */
.article-form {
    margin: 2rem 0;
    padding: 2rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #1a3324;
}

.form-intro-text {
    margin-bottom: 1.5rem;
    color: #555;
}

/* Closing Section */
.closing-section {
    margin: 3rem 0 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.final-cta-text {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1rem 1.5rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.sticky-cta-text {
    color: #ffffff;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sticky-cta-btn {
    padding: 0.8rem 1.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #3d7a51;
    color: #ffffff;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

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

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

.btn-reject:hover {
    background-color: #ccc;
}

/* Page Content Styles */
.page-content {
    min-height: 60vh;
}

.page-header {
    padding: 3rem 0 2rem;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-story,
.methodology-section,
.team-section,
.philosophy-section,
.results-section,
.approach-section,
.values-section {
    margin: 3rem 0;
}

.method-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.method-block {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2d5a3d;
    border-radius: 4px;
}

.method-block h3 {
    margin-top: 0;
    color: #2d5a3d;
}

.team-profiles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.profile-card {
    padding: 1.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.profile-role {
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.profile-bio {
    color: #555;
    margin-bottom: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.value-item h4 {
    margin-top: 0;
    color: #2d5a3d;
}

.value-item p {
    margin-bottom: 0;
}

.cta-section {
    margin: 3rem 0 2rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
    transition: all 0.3s ease;
}

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

.cta-btn-primary:hover {
    background-color: #1a3324;
    color: #ffffff;
}

.cta-btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.cta-btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.results-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    padding-left: 0.5rem;
}

.results-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Services Page */
.services-detailed {
    margin: 2rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding: 2rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    position: relative;
}

.service-detail.featured-service {
    background-color: #f0f5f1;
    border: 2px solid #2d5a3d;
}

.service-detail.premium-service {
    background-color: #fffef5;
    border: 2px solid #d4af37;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-badge.gold {
    background-color: #d4af37;
    color: #1a1a1a;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-title-block h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.service-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d5a3d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-unit {
    font-size: 1rem;
    color: #666;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    margin: 1.5rem 0 1.5rem 1.5rem;
    padding-left: 0.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-note {
    padding: 1rem;
    background-color: #fff3cd;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.service-note strong {
    color: #856404;
}

.service-quote {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.5);
    border-left: 4px solid #2d5a3d;
    font-style: italic;
}

.service-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

.service-select-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

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

.service-select-btn.primary {
    background-color: #1a3324;
}

.service-select-btn.primary:hover {
    background-color: #0d1f16;
}

.service-select-btn.premium {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

.workshop-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem;
    background-color: rgba(255,255,255,0.6);
    border-radius: 4px;
}

.timeline-time {
    font-weight: 700;
    color: #2d5a3d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.timeline-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0;
    color: #555;
}

.pricing-note {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background-color: rgba(255,255,255,0.5);
    border-radius: 4px;
}

.pricing-note p {
    margin-bottom: 0.6rem;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.partner-benefits {
    margin: 2rem 0;
}

.partner-benefits h4 {
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-item {
    padding: 1.2rem;
    background-color: rgba(255,255,255,0.6);
    border-radius: 4px;
}

.benefit-item h5 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2d5a3d;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.services-faq {
    margin: 4rem 0 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #2d5a3d;
}

.faq-item p {
    margin-bottom: 0;
    color: #555;
}

.contact-form-section {
    margin: 4rem 0 3rem;
    padding: 2.5rem 1.5rem;
    background-color: #f0f5f1;
    border-radius: 4px;
}

.contact-form-section h2 {
    margin-top: 0;
    text-align: center;
}

.contact-form-section > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-block h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-detail a {
    color: #2d5a3d;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.info-block {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.info-block h3 {
    margin-top: 0;
    color: #2d5a3d;
}

.info-block ul {
    margin: 1rem 0 1rem 1.5rem;
}

.info-block li {
    margin-bottom: 0.6rem;
}

.quick-links-section {
    margin: 3rem 0;
}

.quick-links-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.quick-link-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    border-color: #2d5a3d;
    background-color: #f0f5f1;
}

.quick-link-card h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    color: #2d5a3d;
}

.quick-link-card p {
    margin-bottom: 0;
    color: #555;
}

.contact-cta {
    margin: 3rem 0 2rem;
    text-align: center;
    padding: 2rem;
    background-color: #f0f5f1;
    border-radius: 4px;
}

.contact-cta h2 {
    margin-top: 0;
}

.email-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a3d;
}

.cta-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
}

/* Thanks Page */
.thanks-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    padding: 3rem 0;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-info {
    text-align: left;
    margin: 3rem 0;
}

.thanks-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.next-steps .step-item {
    display: flex;
    gap: 1.5rem;
}

.next-steps .step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.next-steps .step-text h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.next-steps .step-text p {
    margin-bottom: 0;
    color: #555;
}

.selected-service-info {
    display: none;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f5f1;
    border-left: 4px solid #2d5a3d;
    border-radius: 4px;
    text-align: left;
}

.service-highlight p {
    margin-bottom: 0;
}

.thanks-note {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-radius: 4px;
    text-align: left;
}

.thanks-note p {
    margin-bottom: 0.8rem;
}

.thanks-note p:last-child {
    margin-bottom: 0;
}

.thanks-resources {
    margin: 3rem 0;
}

.thanks-resources h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.resource-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: left;
}

.resource-card:hover {
    border-color: #2d5a3d;
    background-color: #f0f5f1;
}

.resource-card h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    color: #2d5a3d;
}

.resource-card p {
    margin-bottom: 0;
    color: #555;
}

.thanks-cta {
    margin: 2rem 0;
    text-align: center;
}

/* Legal Pages */
.legal-page {
    padding-bottom: 3rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #2d5a3d;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section li {
    margin-bottom: 0.6rem;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.gdpr-table th,
.cookies-table th {
    background-color: #f8f9fa;
    padding: 0.8rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}

.gdpr-table td,
.cookies-table td {
    padding: 0.8rem;
    border-bottom: 1px solid #e0e0e0;
}

.gdpr-table tr:last-child td,
.cookies-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design - Tablet and Desktop */
@media (min-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        border: none;
        background: transparent;
    }

    .nav-menu a {
        padding: 0 1rem;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

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

    .service-card {
        flex: 1;
    }

    .key-factors {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .factor-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1 1 calc(50% - 1rem);
    }

    .quick-links-grid {
        flex-direction: row;
    }

    .quick-link-card {
        flex: 1;
    }

    .resource-links {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        flex: 0 1 auto;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 0.6rem);
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .timeline-time {
        flex-shrink: 0;
        width: 150px;
    }

    .contact-info-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .narrow-column {
        padding: 3rem 2rem;
    }

    .article-hero {
        padding: 4rem 2rem 3rem;
    }

    .sticky-cta {
        padding: 1.2rem 2rem;
    }
}
