:root {
    --primary-color: #2d5016;
    --secondary-color: #8b4513;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #3d6b20;
}

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

.btn-reject:hover {
    background: white;
    color: var(--text-dark);
}

.nav-asymmetric {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
    color: var(--text-dark);
}

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

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

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 8%;
    z-index: 10;
}

.hero-title-large {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image-float {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 55%;
    max-width: 700px;
    opacity: 0.85;
    z-index: 1;
}

.hero-image-float img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #3d6b20;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.intro-staggered {
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block-left {
    flex: 1;
    padding-right: 3rem;
}

.intro-block-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-block-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-block-right {
    flex: 1;
    transform: translateY(3rem);
}

.intro-block-right img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.problem-amplify {
    background: var(--bg-light);
    padding: 8rem 2rem;
    position: relative;
}

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

.problem-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.problem-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.insight-diagonal {
    padding: 10rem 2rem;
    background: white;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.insight-text {
    flex: 1.2;
}

.insight-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.insight-image {
    flex: 1;
    transform: rotate(-2deg) translateX(2rem);
}

.insight-image img {
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.testimonial-floating {
    padding: 8rem 2rem;
    background: var(--bg-light);
    position: relative;
}

.testimonial-card {
    max-width: 600px;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin: 0 auto 3rem;
}

.testimonial-offset {
    margin-left: auto;
    margin-right: 10%;
}

.testimonial-card p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-preview-asymmetric {
    padding: 10rem 2rem;
    background: white;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-large {
    flex: 1 1 calc(60% - 1rem);
}

.service-medium {
    flex: 1 1 calc(50% - 1rem);
}

.service-small {
    flex: 1 1 calc(40% - 1rem);
}

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

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

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.9rem 2rem;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #3d6b20;
    transform: translateX(5px);
}

.trust-builder-offset {
    padding: 10rem 2rem;
    background: var(--bg-light);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-dark);
}

.trust-points {
    display: flex;
    gap: 3rem;
}

.trust-point {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.trust-point h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-point p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-immersive {
    min-height: 60vh;
    background: linear-gradient(rgba(45, 80, 22, 0.85), rgba(45, 80, 22, 0.85)), url('../images/cta-background.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-overlay {
    max-width: 800px;
}

.cta-overlay h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-overlay p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-large {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

.form-section {
    padding: 10rem 2rem;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    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: var(--primary-color);
}

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

.btn-submit:hover {
    background: #3d6b20;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

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

.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: var(--bg-light);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story {
    padding: 6rem 2rem;
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-block p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-stats {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.certifications {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.certifications h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.cert-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
}

.cert-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cert-list {
    list-style: disc;
    margin-left: 2rem;
}

.cert-list li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.cta-about {
    padding: 6rem 2rem;
    background: var(--primary-color);
}

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

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

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

.btn-cta {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

.service-image-large img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-tagline {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.detail-item {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.detail-item strong {
    color: var(--primary-color);
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

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

.price-note {
    color: var(--text-light);
    font-size: 1rem;
}

.btn-book {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #3d6b20;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.services-cta {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.contact-section {
    padding: 6rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

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

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--primary-color);
}

.info-block a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-cta {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.cta-content-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-content-contact p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 70vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.thanks-message {
    margin-bottom: 4rem;
}

.thanks-message p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-message span {
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.steps {
    display: flex;
    gap: 2rem;
    text-align: left;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-page {
    padding: 6rem 2rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-float {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 3rem auto 0;
    }

    .intro-staggered,
    .insight-wrapper,
    .story-content,
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-block-right {
        transform: none;
    }

    .insight-image {
        transform: none;
    }

    .service-detail-card,
    .service-reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-points,
    .team-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .steps {
        flex-direction: column;
    }

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

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }

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

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

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

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

    .form-container {
        padding: 2rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

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