:root {
    --color-primary: #2d5a45;
    --color-primary-dark: #1e3d2f;
    --color-primary-light: #3a7359;
    --color-secondary: #1a3a4a;
    --color-accent: #5a9e7a;
    --color-text: #2c3e3a;
    --color-text-light: #5a6d68;
    --color-text-muted: #7a8a85;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f8f6;
    --color-bg-dark: #1e3830;
    --color-border: #d4ddd9;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

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

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

address {
    font-style: normal;
}

.ad-disclosure {
    background-color: var(--color-bg-alt);
    padding: 8px 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.header {
    background-color: var(--color-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-light {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-light:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-primary-dark);
}

.btn-full {
    width: 100%;
}

.hero {
    min-height: 70vh;
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-content.dark-bg {
    background-color: var(--color-bg-dark);
    color: #fff;
}

.split-content.dark-bg h2,
.split-content.dark-bg h3,
.split-content.dark-bg h4 {
    color: #fff;
}

.split-content.light-bg {
    background-color: var(--color-bg-alt);
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-section {
    padding: 60px 0;
    background-color: var(--color-primary);
    color: #fff;
}

.intro-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.intro-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

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

.service-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background-color: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.price {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

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

.card-link:hover {
    color: var(--color-primary-dark);
}

.services-cta {
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 50px;
}

.step-content h4 {
    margin-bottom: 6px;
}

.step-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-wrapper {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: var(--color-bg-alt);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 24px;
}

.testimonial cite {
    display: block;
    font-style: normal;
}

.testimonial cite strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
}

.testimonial cite span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.cta-section {
    padding: 100px 0;
    background-color: var(--color-primary);
    text-align: center;
}

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

.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.page-hero {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.125rem;
}

.values-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.value-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.expertise-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

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

.milestones-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-border);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item .year {
    min-width: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: right;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 74px;
    top: 8px;
    width: 14px;
    height: 14px;
    background-color: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-bg);
}

.timeline-content h4 {
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.service-detail {
    border-bottom: 1px solid var(--color-border);
}

.service-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.service-features.light-list li {
    border-color: rgba(255,255,255,0.2);
}

.service-features.light-list li::before {
    color: var(--color-accent);
}

.service-pricing {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-pricing.light-pricing .price-box {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.price-box {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.light-pricing .price-value {
    color: #fff;
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.request-section {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
}

.request-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.request-info {
    flex: 1;
}

.request-info h2 {
    margin-bottom: 20px;
}

.request-info p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.request-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
}

.benefit-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.request-form {
    flex: 1;
    background-color: var(--color-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background-color: var(--color-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45,90,69,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 20px;
}

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

.info-block {
    margin-bottom: 30px;
}

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

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: var(--color-text-muted);
}

.map-content svg {
    margin-bottom: 16px;
}

.map-content p {
    font-size: 1rem;
}

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

.directions-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.direction-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--color-bg);
    border-radius: 8px;
}

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

.direction-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

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

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
    padding: 20px 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding-bottom: 20px;
    color: var(--color-text-light);
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.service-confirmation {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--color-text-light);
}

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

.next-steps-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: var(--color-border);
}

.timeline-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.timeline-step .step-number {
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

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

.timeline-step .step-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding: 0 10px;
}

.legal-hero {
    padding: 60px 0;
    background-color: var(--color-bg-dark);
    color: #fff;
}

.legal-hero h1 {
    color: #fff;
    margin-bottom: 10px;
}

.last-updated {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.legal-content {
    padding: 80px 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.legal-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-article h3 {
    margin-top: 24px;
    font-size: 1.15rem;
}

.legal-article ul {
    margin-bottom: 20px;
}

.legal-article address {
    background-color: var(--color-bg-alt);
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

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

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

.cookie-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
}

.cookie-table td {
    color: var(--color-text-light);
}

.footer {
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 80px 0 40px;
}

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

.footer-brand {
    flex: 1.5;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer ul a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer ul a:hover {
    color: #fff;
}

.footer-contact address p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}

.email-display {
    word-break: break-all;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-accept {
    background-color: var(--color-primary);
    color: #fff;
    padding: 12px 24px;
}

.btn-accept:hover {
    background-color: var(--color-primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: var(--color-text);
    padding: 12px 24px;
    border: 1px solid var(--color-border);
}

.btn-reject:hover {
    background-color: var(--color-bg-alt);
}

.cookie-link {
    color: var(--color-primary);
    font-weight: 500;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 50px 40px;
    }

    .split-image {
        min-height: 300px;
    }

    .service-cards {
        flex-direction: column;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-brand {
        flex-basis: 100%;
    }

    .request-wrapper {
        flex-direction: column;
    }

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

    .steps-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .steps-timeline::before {
        display: none;
    }

    .timeline-step {
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .timeline-step .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .timeline-step .step-content {
        text-align: left;
    }

    .timeline-step .step-content p {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-toggle {
        display: flex;
    }

    .intro-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-pricing {
        flex-direction: column;
    }

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

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

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
        padding-left: 50px;
    }

    .timeline-item .year {
        text-align: left;
    }

    .timeline-item::after {
        left: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .split-content {
        padding: 40px 24px;
    }

    .btn {
        padding: 12px 24px;
    }

    .request-form {
        padding: 30px 24px;
    }

    .page-hero {
        padding: 60px 0;
    }
}
