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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a:hover {
    color: #1e3d29;
}

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

.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2d5a3d;
    display: block;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background: #f8f9f7;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: #2d5a3d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.cta-urgent {
    display: inline-block;
    background: #c84630;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.cta-urgent:hover {
    background: #a33824;
    color: #ffffff;
}

.intro-section {
    padding: 5rem 5%;
    background: #ffffff;
}

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

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

.split-left {
    flex: 1;
}

.split-right {
    flex: 1;
}

.split-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-right p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.split-left img {
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.insight-split {
    padding: 5rem 5%;
    background: #f8f9f7;
}

.insight-list {
    list-style: none;
    margin: 1.5rem 0;
}

.insight-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.trust-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.centered-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.centered-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background: #f8f9f7;
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #2d5a3d;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.services-overview {
    padding: 5rem 5%;
    background: #f8f9f7;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.services-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-block {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.service-visual {
    flex: 1;
    min-height: 350px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.select-service {
    display: inline-block;
    background: #2d5a3d;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #1e3d29;
}

.urgency-section {
    padding: 4rem 5%;
    background: #c84630;
    color: #ffffff;
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

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

.form-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-form {
    background: #f8f9f7;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

.btn-submit {
    width: 100%;
    background: #2d5a3d;
    color: #ffffff;
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1e3d29;
}

.final-cta {
    padding: 4rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.main-footer {
    background: #0f0f0f;
    color: #ffffff;
    padding: 3rem 5% 1rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
    color: #808080;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    background: #2d5a3d;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #1e3d29;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 90, 61, 0.5);
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #7fb894;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #1e3d29;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

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

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 5%;
    background: #ffffff;
}

.values-section {
    padding: 5rem 5%;
    background: #f8f9f7;
}

.values-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.value-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.experience-section {
    padding: 5rem 5%;
    background: #f8f9f7;
}

.experience-list {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.exp-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    border-top: 4px solid #2d5a3d;
}

.exp-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.exp-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.team-cta {
    padding: 4rem 5%;
    background: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #f8f9f7;
    padding: 3rem;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-detail {
    padding: 3rem 5%;
    background: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-card {
    background: #f8f9f7;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.service-body {
    padding: 3rem;
}

.service-body h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-lead {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes,
.service-outcome {
    margin-bottom: 2rem;
}

.service-includes h3,
.service-outcome h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.service-outcome p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d5a3d;
}

.custom-solutions {
    padding: 3rem 5%;
    background: #f8f9f7;
}

.custom-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.custom-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.custom-box p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-content {
    padding: 3rem 5%;
    background: #ffffff;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 90, 61, 0.9);
    color: #ffffff;
    padding: 1.5rem;
}

.map-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.contact-detail p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-approach {
    padding: 5rem 5%;
    background: #f8f9f7;
}

.approach-steps {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a3d;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-confidentiality {
    padding: 3rem 5%;
    background: #ffffff;
}

.confidentiality-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9f7;
    padding: 3rem;
    border-radius: 8px;
    border-left: 5px solid #2d5a3d;
}

.confidentiality-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.confidentiality-box p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-faq {
    padding: 5rem 5%;
    background: #f8f9f7;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-final-cta {
    padding: 4rem 5%;
    background: #ffffff;
}

.final-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #2d5a3d;
    color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.final-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-hero {
    padding: 5rem 5%;
    background: #f8f9f7;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

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

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

.thanks-lead {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
    border-left: 4px solid #2d5a3d;
}

.service-confirmation p {
    font-size: 1.05rem;
    color: #1a1a1a;
}

.next-steps {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-resources {
    padding: 5rem 5%;
    background: #f8f9f7;
}

.resource-cards {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.resource-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-link {
    color: #2d5a3d;
    font-weight: 600;
    text-decoration: underline;
}

.thanks-urgent {
    padding: 3rem 5%;
    background: #ffffff;
}

.urgent-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff3cd;
    padding: 2.5rem;
    border-radius: 6px;
    border-left: 5px solid #c84630;
}

.urgent-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.urgent-box p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.urgent-box a {
    color: #c84630;
    font-weight: 600;
}

.legal-page {
    padding: 3rem 5%;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section ul li {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-section a {
    color: #2d5a3d;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table thead {
    background: #f8f9f7;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #4a4a4a;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        display: none;
        border-bottom: 1px solid #e0e0e0;
    }

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

    .nav-links a {
        padding: 1rem 5%;
        border-top: 1px solid #e0e0e0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .service-visual {
        min-height: 250px;
    }

    .values-grid,
    .experience-list,
    .approach-steps,
    .resource-cards {
        flex-direction: column;
    }

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

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

    .service-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}
