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

:root {
    --primary-color: #2d5f4f;
    --secondary-color: #7ba896;
    --accent-color: #c9a96e;
    --dark-color: #1a2e26;
    --light-color: #f5f8f6;
    --text-color: #2c3e37;
    --background-light: #fafcfb;
    --border-color: #d4e0db;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-light);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.ad-disclosure {
    background-color: var(--accent-color);
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

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

.hero-content-offset {
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding-right: 60px;
}

.hero-title-large {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 95, 79, 0.3);
}

.btn-hero:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 79, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 70%;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--secondary-color);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    padding: 120px 80px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-block-left {
    flex: 1;
    max-width: 550px;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.intro-visual-right {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-40px);
    background-color: var(--secondary-color);
}

.intro-visual-right img {
    width: 100%;
    height: 500px;
}

.services-asymmetric {
    padding: 100px 80px 120px;
    background-color: var(--light-color);
}

.section-header-irregular {
    max-width: 700px;
    margin-bottom: 80px;
    margin-left: 80px;
}

.section-header-irregular h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header-irregular p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

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

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    width: calc(33.333% - 30px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card-elevated {
    transform: translateY(-20px);
}

.service-card-shifted {
    transform: translateX(20px);
}

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

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.service-image-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image-container img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-service {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-section-irregular {
    padding: 120px 80px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.form-wrapper-offset {
    flex: 1;
    max-width: 600px;
}

.form-intro h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 40px;
}

.contact-form-asymmetric {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--background-light);
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-visual-overlap {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(40px);
    background-color: var(--secondary-color);
}

.form-visual-overlap img {
    width: 100%;
    height: 550px;
}

.trust-section {
    padding: 100px 80px;
    background-color: var(--primary-color);
}

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

.trust-content-irregular h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.trust-grid-asymmetric {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.trust-block {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.trust-block-offset {
    transform: translateY(40px);
}

.trust-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
}

.trust-author {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 80px;
    background-color: var(--background-light);
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
    text-align: center;
    opacity: 0.8;
}

.footer-asymmetric {
    background-color: var(--dark-color);
    color: #fff;
    padding: 80px 80px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 2;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.cookie-content p a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    flex: 1;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background-color: #c0c9c4;
}

.page-header-offset {
    padding: 150px 80px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
}

.header-content-irregular {
    max-width: 800px;
}

.header-content-irregular h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
}

.header-content-irregular p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.about-intro-asymmetric {
    padding: 100px 80px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.about-image-overlap {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-30px) translateX(20px);
    background-color: var(--secondary-color);
}

.about-image-overlap img {
    width: 100%;
    height: 500px;
}

.philosophy-section {
    padding: 80px 80px 100px;
    background-color: var(--light-color);
}

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

.philosophy-content-irregular h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.philosophy-grid-offset {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.philosophy-item {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.philosophy-item-shifted {
    transform: translateY(30px);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.team-section-asymmetric {
    padding: 100px 80px;
}

.team-intro {
    max-width: 700px;
    margin-bottom: 60px;
}

.team-intro h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
}

.team-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    margin-left: 100px;
    background-color: var(--secondary-color);
}

.team-visual img {
    width: 100%;
    height: 500px;
}

.values-section {
    padding: 80px 80px 100px;
    background-color: var(--light-color);
}

.values-content-offset {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 120px;
}

.values-content-offset h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.values-content-offset p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.cta-section-irregular {
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
}

.cta-content-asymmetric {
    max-width: 700px;
    margin-left: 100px;
}

.cta-content-asymmetric h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-content-asymmetric p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.services-detail-section {
    padding: 80px 80px 100px;
}

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

.services-intro-asymmetric p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

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

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

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

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

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

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

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

.btn-service-detail {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
}

.service-detail-image img {
    width: 100%;
    height: 450px;
}

.additional-services-section {
    padding: 60px 80px 80px;
    background-color: var(--light-color);
}

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

.additional-services-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.additional-services-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-section-asymmetric {
    padding: 100px 80px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info-block > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-visual-overlap {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(40px);
    background-color: var(--secondary-color);
}

.contact-visual-overlap img {
    width: 100%;
    height: 600px;
}

.impressum-section {
    padding: 80px 80px 100px;
    background-color: var(--light-color);
}

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

.impressum-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.impressum-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.impressum-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

.link-display {
    color: var(--primary-color);
    word-break: break-all;
}

.thanks-section {
    min-height: 80vh;
    padding: 150px 80px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thanks-content-centered {
    max-width: 700px;
    text-align: center;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content-centered h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.thanks-service-info {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 1.05rem;
    color: var(--text-color);
}

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

.btn-thanks-primary,
.btn-thanks-secondary {
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.btn-thanks-secondary {
    background-color: var(--light-color);
    color: var(--text-color);
}

.btn-thanks-secondary:hover {
    background-color: var(--border-color);
}

.thanks-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.3;
}

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

.legal-page {
    padding: 80px 80px 100px;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-update {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: var(--text-color);
}

@media (max-width: 1200px) {
    .services-grid-offset {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        top: 10px;
        right: 20px;
        left: 20px;
        padding: 15px 20px;
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-radius: 16px;
        margin-top: 10px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 80px 30px 60px;
        min-height: auto;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        transform: none;
        width: 100%;
        height: 400px;
        border-radius: 16px;
        margin-top: 40px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

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

    .section-header-irregular {
        margin-left: 0;
    }

    .services-asymmetric {
        padding: 60px 30px;
    }

    .service-card {
        width: 100%;
        min-width: 0;
    }

    .service-card-elevated,
    .service-card-shifted {
        transform: none;
    }

    .form-section-irregular {
        flex-direction: column;
        padding: 60px 30px;
    }

    .form-visual-overlap {
        transform: none;
        width: 100%;
    }

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

    .trust-block-offset {
        transform: none;
    }

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

    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .page-header-offset {
        padding: 100px 30px 60px;
    }

    .header-content-irregular h1 {
        font-size: 2.5rem;
    }

    .about-intro-asymmetric,
    .contact-section-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .about-image-overlap,
    .contact-visual-overlap {
        transform: none;
    }

    .philosophy-grid-offset {
        flex-direction: column;
    }

    .philosophy-item-shifted {
        transform: none;
    }

    .team-visual {
        margin-left: 0;
    }

    .values-content-offset,
    .cta-content-asymmetric {
        margin-left: 0;
    }

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

    .thanks-section {
        padding: 100px 30px 60px;
    }

    .thanks-content-centered {
        padding: 40px 30px;
    }

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

    .legal-page {
        padding: 60px 30px;
    }
}