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

:root {
    --primary-dark: #2d5a3d;
    --primary-light: #4a8359;
    --accent: #8b6f47;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #5a5a5a;
    --border-color: #d4d1cc;
}

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

.ad-disclosure {
    background-color: var(--accent);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    position: relative;
    background-color: var(--bg-white);
}

.nav-logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.nav-items {
    display: flex;
    gap: 35px;
}

.nav-items a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: var(--primary-dark);
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 80px 50px;
    position: relative;
    background-color: var(--bg-light);
}

.hero-content-offset {
    width: 45%;
    padding-top: 120px;
    padding-left: 60px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 68px;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content-offset p {
    font-size: 19px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.6;
}

.hero-image-overlap {
    position: absolute;
    right: 40px;
    top: 150px;
    width: 52%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--border-color);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-dark);
    color: white;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.offset-intro {
    display: flex;
    padding: 100px 50px 100px 180px;
    gap: 120px;
    align-items: flex-start;
    background-color: var(--bg-white);
}

.intro-block-left {
    width: 48%;
}

.intro-block-left h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
}

.intro-stats-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--accent);
    padding-left: 25px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 8px;
}

.services-asymmetric {
    padding: 90px 50px 120px;
    background-color: var(--bg-light);
}

.section-header-diagonal {
    margin-left: 80px;
    margin-bottom: 70px;
}

.section-header-diagonal h2 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header-diagonal p {
    font-size: 18px;
    color: var(--text-gray);
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.service-card {
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.service-card.card-medium {
    width: calc(38% - 15px);
}

.service-card.card-wide {
    width: 100%;
    flex-direction: row;
}

.service-card.card-small {
    width: calc(32% - 20px);
}

.service-card.card-feature {
    width: calc(66% - 15px);
}

.service-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-card.card-wide img {
    width: 50%;
    height: 400px;
}

.service-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.service-card.card-wide .service-content {
    width: 50%;
    justify-content: center;
}

.service-content h3 {
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 18px;
    display: block;
}

.select-service {
    padding: 13px 28px;
    background-color: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.process-diagonal {
    display: flex;
    padding: 100px 50px;
    gap: 80px;
    background-color: var(--bg-white);
    align-items: center;
}

.process-content {
    width: 55%;
    padding-left: 60px;
}

.process-content h2 {
    font-size: 44px;
    color: var(--primary-dark);
    margin-bottom: 50px;
    font-weight: 600;
}

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

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background-color: var(--bg-light);
}

.step.step-offset {
    margin-left: 80px;
}

.step-num {
    font-size: 38px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.step h4 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.step p {
    font-size: 15px;
    color: var(--text-gray);
}

.process-image {
    width: 42%;
}

.process-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--border-color);
}

.form-section-overlap {
    padding: 100px 50px 100px 180px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 700px;
    background-color: var(--bg-white);
    padding: 55px;
}

.form-container h2 {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.form-container > p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group label {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.form-notice {
    font-size: 13px;
    color: var(--text-gray);
}

.form-notice a {
    color: var(--primary-dark);
}

.btn-submit {
    padding: 16px 38px;
    background-color: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.trust-section {
    display: flex;
    padding: 100px 50px;
    gap: 100px;
    background-color: var(--bg-white);
    align-items: center;
}

.trust-content-left {
    width: 48%;
}

.trust-content-left h2 {
    font-size: 44px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.trust-content-left p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: var(--primary-light);
}

.trust-image-right {
    width: 48%;
}

.trust-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--border-color);
}

.footer-asymmetric {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 50px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 800px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 2px solid var(--border-color);
    padding: 25px 50px;
    z-index: 9999;
    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: 14px;
    color: var(--text-gray);
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: #c4c1bc;
    transform: translateY(-2px);
}

.cookie-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 14px;
}

.page-hero-simple {
    padding: 120px 50px 80px;
    background-color: var(--bg-light);
    text-align: left;
    margin-left: 100px;
}

.page-hero-simple h1 {
    font-size: 58px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-simple p {
    font-size: 20px;
    color: var(--text-gray);
}

.about-story {
    display: flex;
    padding: 90px 50px;
    gap: 80px;
    background-color: var(--bg-white);
    align-items: center;
}

.story-image-left {
    width: 45%;
}

.story-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--border-color);
}

.story-content-right {
    width: 50%;
}

.story-content-right h2 {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.story-content-right p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-offset {
    padding: 80px 50px 100px 180px;
    background-color: var(--bg-light);
}

.values-header h2 {
    font-size: 44px;
    color: var(--primary-dark);
    margin-bottom: 60px;
    font-weight: 600;
}

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

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    width: calc(33.333% - 20px);
}

.value-card.card-highlight {
    background-color: var(--primary-dark);
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card.card-highlight h3 {
    color: white;
}

.value-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.value-card.card-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.team-section {
    padding: 100px 50px;
    background-color: var(--bg-white);
}

.team-intro {
    margin-bottom: 60px;
    text-align: left;
    margin-left: 80px;
}

.team-intro h2 {
    font-size: 46px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-intro p {
    font-size: 18px;
    color: var(--text-gray);
}

.team-content-split {
    display: flex;
    gap: 100px;
    align-items: center;
}

.team-text {
    width: 52%;
    padding-left: 80px;
}

.team-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-image {
    width: 42%;
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--border-color);
}

.process-detailed {
    padding: 100px 50px 100px 140px;
    background-color: var(--bg-light);
}

.process-detailed h2 {
    font-size: 46px;
    color: var(--primary-dark);
    margin-bottom: 60px;
    font-weight: 600;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.timeline-marker {
    background-color: var(--accent);
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    align-self: flex-start;
}

.timeline-content {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
}

.timeline-content h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-about {
    padding: 100px 50px;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-dark);
    color: white;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.page-hero-services {
    padding: 100px 50px 80px;
    background-color: var(--bg-light);
}

.hero-services-content {
    max-width: 800px;
    margin-left: 80px;
}

.hero-services-content h1 {
    font-size: 54px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-services-content p {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.6;
}

.services-detailed {
    padding: 60px 50px 100px;
    background-color: var(--bg-white);
}

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

.service-detail-block.left-aligned {
    flex-direction: row;
}

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

.service-detail-block.highlight-service {
    background-color: var(--bg-light);
    padding: 60px;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--border-color);
}

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

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.feature-list ul li {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-list ul li:before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-price-box {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 25px;
}

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

.price-value {
    font-size: 32px;
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.price-note {
    font-size: 13px;
    color: var(--text-gray);
}

.comparison-note {
    padding: 80px 50px;
    background-color: var(--bg-light);
    text-align: center;
}

.note-content h3 {
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.note-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #75603d;
    transform: translateY(-2px);
}

.page-hero-contact {
    padding: 100px 50px 70px;
    background-color: var(--bg-light);
    margin-left: 100px;
}

.page-hero-contact h1 {
    font-size: 56px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero-contact p {
    font-size: 19px;
    color: var(--text-gray);
}

.contact-layout {
    display: flex;
    padding: 90px 50px;
    gap: 80px;
    background-color: var(--bg-white);
}

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

.contact-info-primary h2 {
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 40px;
    font-weight: 600;
}

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

.info-block h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.note-small {
    font-size: 14px;
    margin-top: 10px;
    font-style: italic;
}

.contact-additional {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-notice {
    background-color: var(--bg-light);
    padding: 35px;
}

.contact-notice h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-notice p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--border-color);
}

.contact-workflow {
    background-color: var(--bg-light);
    padding: 35px;
}

.contact-workflow h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-workflow ol {
    padding-left: 20px;
}

.contact-workflow ol li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.map-placeholder {
    background-color: var(--bg-light);
    padding: 80px 50px;
}

.map-content {
    background-color: var(--border-color);
    padding: 80px;
    text-align: center;
}

.map-content p {
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px;
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    margin-bottom: 30px;
}

.selected-service-note {
    font-size: 16px;
    color: var(--text-dark);
}

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

.thanks-next-steps h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps ul li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.thanks-next-steps ul li:before {
    content: "✓";
    color: var(--primary-dark);
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.legal-page {
    padding: 80px 50px 100px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: var(--primary-light);
}

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

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

.cookie-table th {
    background-color: var(--bg-light);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 15px;
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-overlap {
        width: 100%;
        position: relative;
        right: auto;
        top: auto;
        padding: 0;
    }

    .offset-intro,
    .services-grid-offset,
    .process-diagonal,
    .trust-section,
    .about-story,
    .team-content-split,
    .contact-layout {
        flex-direction: column;
    }

    .intro-block-left,
    .intro-stats-right,
    .process-content,
    .process-image,
    .trust-content-left,
    .trust-image-right,
    .story-image-left,
    .story-content-right,
    .team-text,
    .team-image,
    .contact-info-primary,
    .contact-additional,
    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .service-card.card-large,
    .service-card.card-medium,
    .service-card.card-small,
    .service-card.card-feature {
        width: 100%;
    }

    .service-card.card-wide {
        flex-direction: column;
    }

    .service-card.card-wide img {
        width: 100%;
    }

    .service-card.card-wide .service-content {
        width: 100%;
    }

    .value-card {
        width: 100%;
    }

    .service-detail-block {
        flex-direction: column;
    }

    .service-detail-block.right-aligned {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 20px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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