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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2d5a3d;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero-offset-text {
    width: 55%;
    z-index: 2;
    padding-right: 40px;
}

.hero-offset-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-offset-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image-overlay {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    height: 70%;
    z-index: 1;
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background: #2d5a3d;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-primary:hover {
    background: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: #f4f4f4;
    color: #2d5a3d;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

.intro-offset {
    display: flex;
    justify-content: space-between;
    padding: 100px 8%;
    gap: 60px;
    background: #f9f9f9;
}

.intro-narrow {
    width: 60%;
}

.intro-narrow h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.intro-card-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.metric {
    font-size: 48px;
    font-weight: 800;
    color: #2d5a3d;
    line-height: 1;
}

.metric-label {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.philosophy-layered {
    display: flex;
    padding: 80px 8%;
    gap: 50px;
    align-items: center;
}

.layer-image {
    width: 45%;
}

.layer-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.layer-text {
    width: 50%;
    padding-left: 30px;
}

.layer-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.layer-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-grid {
    padding: 100px 8%;
    background: #fff;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 19px;
    color: #666;
}

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

.service-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.service-card.large {
    width: calc(50% - 15px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
    margin-bottom: 25px;
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.price-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2d5a3d;
    margin-top: 5px;
}

.service-select {
    background: #2d5a3d;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: #234a31;
    transform: translateY(-2px);
}

.approach-split {
    display: flex;
    padding: 100px 8%;
    gap: 80px;
    background: #f4f4f4;
    align-items: center;
}

.approach-content {
    width: 55%;
}

.approach-content h2 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.approach-item {
    margin-bottom: 35px;
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5a3d;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.approach-visual {
    width: 40%;
}

.approach-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.trust-indicators {
    padding: 80px 8%;
    background: #fff;
}

.trust-container {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
    padding: 35px;
    background: #f9f9f9;
    border-radius: 10px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-form-section {
    padding: 100px 8%;
    background: #2d5a3d;
    color: #fff;
}

.form-intro {
    max-width: 600px;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.9;
}

.inquiry-form {
    max-width: 700px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #2d5a3d;
    color: #fff;
}

.form-submit {
    background: #fff;
    color: #2d5a3d;
    border: none;
    padding: 16px 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #f4f4f4;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 8%;
    background: #f9f9f9;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 8% 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

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

.sticky-cta a {
    display: block;
    background: #2d5a3d;
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(45, 90, 61, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #234a31;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 90, 61, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 25px;
    z-index: 10000;
    display: none;
}

.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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: #234a31;
}

.cookie-reject {
    background: #444;
    color: #fff;
}

.cookie-reject:hover {
    background: #555;
}

.page-hero {
    padding: 160px 8% 80px;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e4028 100%);
    color: #fff;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 8%;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    width: 40%;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-content {
    width: 55%;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.service-price-detail {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-from {
    font-size: 14px;
    color: #888;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2d5a3d;
}

.services-cta {
    padding: 80px 8%;
    background: #f9f9f9;
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 19px;
    color: #666;
    margin-bottom: 35px;
}

.about-hero {
    padding: 160px 8% 80px;
    background: #f9f9f9;
}

.about-intro h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 22px;
    color: #555;
    max-width: 700px;
}

.story-section {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
    align-items: center;
}

.story-image {
    width: 45%;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-text {
    width: 50%;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.expertise-grid {
    padding: 80px 8%;
    background: #f9f9f9;
}

.expertise-grid h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.expertise-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-card {
    width: calc(50% - 15px);
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.expertise-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.expertise-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.equipment-section {
    padding: 80px 8%;
}

.equipment-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.equipment-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
}

.equipment-list {
    display: flex;
    gap: 40px;
}

.equipment-item {
    flex: 1;
}

.equipment-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.equipment-item ul {
    list-style: none;
}

.equipment-item ul li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.equipment-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
}

.values-offset {
    padding: 80px 8%;
    background: #f9f9f9;
}

.values-text {
    max-width: 600px;
    margin-bottom: 50px;
}

.values-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.values-text p {
    font-size: 18px;
    color: #555;
}

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

.value-item {
    flex: 1;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
}

.value-number {
    display: block;
    font-size: 14px;
    color: #2d5a3d;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 80px 8%;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-section > p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.team-note {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.team-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.about-cta {
    padding: 80px 8%;
    background: #2d5a3d;
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.contact-hero {
    padding: 160px 8% 60px;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e4028 100%);
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 22px;
    opacity: 0.9;
}

.contact-main {
    display: flex;
    padding: 80px 8%;
    gap: 80px;
}

.contact-info-primary {
    width: 50%;
}

.contact-info-primary h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5a3d;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.email-display {
    color: #2d5a3d;
    font-weight: 500;
    user-select: all;
}

.contact-note {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-map-placeholder {
    width: 45%;
    background: #f9f9f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
    padding: 40px;
}

.map-placeholder-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.map-note {
    font-size: 14px;
    color: #888;
}

.contact-process {
    padding: 80px 8%;
    background: #f9f9f9;
}

.contact-process h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.process-step {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2d5a3d;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-faq {
    padding: 80px 8%;
}

.contact-faq h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.faq-item {
    width: calc(50% - 15px);
    background: #f9f9f9;
    padding: 35px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.thanks-container {
    min-height: 60vh;
    padding: 160px 8% 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #2d5a3d;
    margin-bottom: 30px;
}

.thanks-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

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

#serviceConfirmation {
    color: #2d5a3d;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.next-step .step-number {
    flex-shrink: 0;
}

.next-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #234a31;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f4f4f4;
    color: #2d5a3d;
}

.btn-secondary:hover {
    background: #e8e8e8;
}

.thanks-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.thanks-contact p {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.legal-page {
    padding: 160px 8% 80px;
}

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-date,
.legal-subtitle {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

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

.legal-content a:hover {
    color: #234a31;
}

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

.cookie-table thead {
    background: #f9f9f9;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #ddd;
}

.cookie-table td {
    padding: 15px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #eee;
}

@media (max-width: 1024px) {
    .hero-offset-text h1 {
        font-size: 44px;
    }

    .hero-image-overlay {
        width: 45%;
    }

    .services-asymmetric .service-card {
        width: calc(50% - 15px);
    }

    .services-asymmetric .service-card.large {
        width: 100%;
    }

    .trust-container {
        flex-wrap: wrap;
    }

    .trust-item {
        width: calc(50% - 20px);
    }

    .equipment-list {
        flex-wrap: wrap;
    }

    .equipment-item {
        width: calc(50% - 20px);
    }

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

    .value-item {
        width: 100%;
    }

    .process-steps {
        flex-wrap: wrap;
    }

    .process-step {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 10px;
        width: 95%;
    }

    .nav-content {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 5% 40px;
    }

    .hero-offset-text {
        width: 100%;
        padding-right: 0;
    }

    .hero-offset-text h1 {
        font-size: 36px;
    }

    .hero-offset-text p {
        font-size: 17px;
    }

    .hero-image-overlay {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

    .intro-narrow,
    .intro-card-right {
        width: 100%;
    }

    .intro-narrow h2 {
        font-size: 32px;
    }

    .philosophy-layered {
        flex-direction: column;
        padding: 60px 5%;
    }

    .layer-image,
    .layer-text {
        width: 100%;
        padding-left: 0;
    }

    .layer-text h3 {
        font-size: 28px;
    }

    .services-grid {
        padding: 60px 5%;
    }

    .section-header-offset h2 {
        font-size: 36px;
    }

    .services-asymmetric .service-card,
    .services-asymmetric .service-card.large {
        width: 100%;
    }

    .approach-split {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .approach-content,
    .approach-visual {
        width: 100%;
    }

    .approach-content h2 {
        font-size: 32px;
    }

    .trust-container {
        flex-direction: column;
    }

    .trust-item {
        width: 100%;
    }

    .contact-form-section {
        padding: 60px 5%;
    }

    .form-intro h2 {
        font-size: 32px;
    }

    .disclaimer-section {
        padding: 40px 5%;
    }

    .footer-asymmetric {
        padding: 60px 5% 30px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

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

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

    .page-hero {
        padding: 120px 5% 60px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .page-hero p {
        font-size: 18px;
    }

    .services-detailed {
        padding: 60px 5%;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .services-cta {
        padding: 60px 5%;
    }

    .services-cta h2 {
        font-size: 32px;
    }

    .about-hero {
        padding: 120px 5% 60px;
    }

    .about-intro h1 {
        font-size: 42px;
    }

    .about-intro p {
        font-size: 18px;
    }

    .story-section {
        flex-direction: column;
        padding: 60px 5%;
    }

    .story-image,
    .story-text {
        width: 100%;
    }

    .story-text h2 {
        font-size: 30px;
    }

    .expertise-grid {
        padding: 60px 5%;
    }

    .expertise-grid h2 {
        font-size: 32px;
    }

    .expertise-cards .expertise-card {
        width: 100%;
    }

    .equipment-section {
        padding: 60px 5%;
    }

    .equipment-content h2 {
        font-size: 32px;
    }

    .equipment-list {
        flex-direction: column;
    }

    .equipment-item {
        width: 100%;
    }

    .values-offset {
        padding: 60px 5%;
    }

    .values-text h2 {
        font-size: 32px;
    }

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

    .value-item {
        width: 100%;
    }

    .team-section {
        padding: 60px 5%;
    }

    .team-section h2 {
        font-size: 32px;
    }

    .about-cta {
        padding: 60px 5%;
    }

    .about-cta h2 {
        font-size: 32px;
    }

    .contact-hero {
        padding: 120px 5% 60px;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-hero p {
        font-size: 18px;
    }

    .contact-main {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .contact-info-primary,
    .contact-map-placeholder {
        width: 100%;
    }

    .contact-info-primary h2 {
        font-size: 30px;
    }

    .contact-process {
        padding: 60px 5%;
    }

    .contact-process h2 {
        font-size: 32px;
    }

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

    .process-step {
        width: 100%;
    }

    .contact-faq {
        padding: 60px 5%;
    }

    .contact-faq h2 {
        font-size: 32px;
    }

    .faq-grid .faq-item {
        width: 100%;
    }

    .thanks-container {
        padding: 120px 5% 60px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-next-steps h2 {
        font-size: 24px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .legal-page {
        padding: 120px 5% 60px;
    }

    .legal-content h1 {
        font-size: 36px;
    }

    .legal-content h2 {
        font-size: 24px;
    }

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}