/* Index */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1d1d1f;
    line-height: 1.5;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

.hero .container {
    width: 100%;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem); 
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #515154;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.btn {
    display: inline-block;
    background: #1d1d1f;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 980px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .btn:hover {
        transform: scale(1.05);
        background: #000000;
    }
}

.btn:active {
    transform: scale(0.96);
}

.services {
    padding: 60px 20px;
    background: #f5f5f7;
}

.services h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 80px 24px;
    }
    
    .services {
        padding: 100px 24px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards ease-out;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    font-family: -apple-system, sans-serif;
}

.title-underline {
    width: 40px; 
    height: 5px;
    background: #000000;
    margin: 0 auto 30px auto; 
    border-radius: 2px;
    opacity: 1;
}

.slider-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    max-width: 1000px;
    position: relative;
    margin: 0 15px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #fff;
}

@media (min-width: 1000px) {
    .slider-container {
        margin: auto;
    }
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block !important; 
    animation: fadeIn 0.8s ease-in-out;
}

.slide img {
    width: 100%;
    height: 500px; 
    object-fit: cover;
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border: none;
    background: rgba(0,0,0,0.3);
    user-select: none;
    transition: 0.3s;
    z-index: 10;
}

.next { right: 0; border-radius: 3px 0 0 3px; }
.prev { left: 0; border-radius: 0 3px 3px 0; }

.prev:hover, .next:hover { 
    background-color: rgba(0,0,0,0.8); 
}

.dots-container {
    text-align: center;
    padding: 15px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
}

.dot.active, .dot:hover { background-color: #333; }

.blur-bg {
    filter: blur(8px);
    transform: scale(1.1);
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 85%;
}

.btn-slider {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .slider-section {
        padding: 40px 0;
    }

    .slide img {
        height: 300px;
    }

    .prev, .next {
        display: none !important; 
    }

    .cta-content h2 {
        font-size: 1.2rem;
    }
    
    .cta-content p {
        font-size: 0.85rem;
    }

    .btn-slider {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .dot {
        height: 14px;
        width: 14px;
        margin: 0 7px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; } 
    to { opacity: 1; }
}

/* Header */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 64px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #000000;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

nav.container {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    list-style: none;
    text-align: center;
    padding-top: 40px;
}

.nav-links.active {
    left: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 1.4rem; 
    font-weight: 500;
    padding: 20px 40px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #f5f5f7;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links.active a {
    opacity: 1;
}

.mobile-only {
    display: none;
    padding: 20px;
}

.mobile-lang-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-lang-grid a {
    display: flex !important;
    font-size: 1rem !important;
    padding: 10px !important;
    border-bottom: none !important;
    opacity: 1 !important;
    width: auto !important;
    align-items: center;
    gap: 8px;
    color: #000000 !important;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.lang-selection {
    display: flex;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.current-lang {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    color: #000000;
    font-weight: 500;
}

.current-lang img {
    margin-right: 8px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    top: 100%;
    right: 0;
}

.dropdown-content a {
    color: #000000;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #f5f5f7;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}

@media (min-width: 769px) {
    nav.container {
        display: grid; 
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .lang-selection {
        justify-self: end;
    }

    .logo-img {
        height: 55px;
    }

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        flex-direction: row; 
        gap: 32px;
        padding-top: 0;
        overflow: visible;
        transition: none;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 0;
        border-bottom: none;
        opacity: 0.7; 
        position: relative;
        width: auto;
        color: #000000;
    }

    .nav-links a:hover {
        opacity: 1;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 0;
        height: 2px;
        background: #000000;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .mobile-only {
        display: none;
    }
}

.mobile-lang-grid {
    z-index: 1002;
    position: relative;
}

.mobile-lang-grid a {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Footer */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav-links a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-decoration: none;
    color: #000000;
}

footer {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 0;
    margin-top: 50px;
}

footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    text-decoration: none;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-links a:hover::after {
    width: 100%;
}

footer p {
    color: #000000;
    font-size: 0.85rem;
    opacity: 1; 
    margin: 0;
    font-weight: 400; 
}

/* Instagram-style Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal.is-visible {
    opacity: 1;
}

/* Card: Bild links, Info rechts */
.ig-card {
    background: #000000;
    border-radius: 4px;
    width: 100%;
    max-width: 1550px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: row;
    height: min(90vh, 820px);
}

/* LINKE SEITE – Bild */
.ig-image-side {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #000;
    border-right: 1px solid #2c2c2e;
}

.ig-image-container {
    position: relative;
    flex: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ig-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.15s ease;
}

.ig-main-img.fading {
    opacity: 0;
}

.ig-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.ig-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

.ig-nav-prev { left: 12px; }
.ig-nav-next { right: 12px; }

.ig-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 0 8px;
    flex-shrink: 0;
    background: #000;
}

.ig-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3a3a3c;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.ig-dot.active {
    background: #3897f0;
    transform: scale(1.3);
}

/* RECHTE SEITE – Header + Beschreibung */
.ig-info-side {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #1c1c1e;
}

.ig-header {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    gap: 10px;
    border-bottom: 1px solid #2c2c2e;
    flex-shrink: 0;
}

.ig-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 2px;
    flex-shrink: 0;
}

.ig-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    background: #1c1c1e;
}

.ig-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ig-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.ig-category {
    font-size: 0.73rem;
    color: #8e8e93;
    line-height: 1.2;
}

.ig-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.ig-close-btn:hover {
    opacity: 1;
}

.ig-caption-area {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.ig-caption {
    font-size: 0.875rem;
    color: #ebebf0;
    line-height: 1.6;
    margin: 0;
}

.ig-caption-name {
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 6px;
    font-size: 0.875rem;
}

/* Mobile: wieder untereinander stapeln */
@media (max-width: 750px) {
    .modal { padding: 0; align-items: flex-end; }
    .ig-card {
        flex-direction: column;
        height: auto;
        max-height: 96vh;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
    }
    .ig-image-side { border-right: none; }
    .ig-image-container { min-height: 45vw; max-height: 52vh; }
    .ig-main-img { height: auto; }
    .ig-info-side { width: 100%; }
}

/* Dataprotection */

.privacy-content {
    padding: 120px 24px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1.2rem;
    color: #86868b;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.5;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.privacy-item {
    background: #f5f5f7;
    padding: 32px;
    border-radius: 20px;
    transition: transform 0.2s ease;
}

.privacy-item:hover {
    transform: translateY(-2px);
}

.privacy-item h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.privacy-item p {
    font-size: 1rem;
    color: #424245;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 850px) {
    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privacy-item.full-width {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .privacy-content h1 {
        font-size: 2.2rem;
    }
    
    .privacy-item {
        padding: 24px;
    }
}

/* Projects */

main {
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; 
}

.projects-hero.container {
    padding-top: 60px !important; 
    padding-bottom: 80px !important; 
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
}

.projects-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.subtitle {
    font-size: 1.2rem;
    color: #86868b;
    max-width: 700px;
    margin: 0 auto; 
    line-height: 1.5;
}

.projects-grid.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    padding-top: 0 !important; 
    padding-bottom: 120px; 
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
    border-radius: 20px;
    transform: translateZ(0);
}

.project-image img, 
.project-image img.responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    padding: 12px 24px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .view-project {
    transform: translateY(0);
}

.project-info {
    padding: 24px 0;
}

.project-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #0071e3;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.project-info h3 {
    font-size: 1.5rem;
    margin: 8px 0;
}

.project-info p {
    color: #86868b;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .projects-hero.container {
        padding-bottom: 60px !important;
        padding-top: 40px !important;
    }
}

/* services */

:root {
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    --accent: #0071e3;
    --bg-light: #f5f5f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-detail {
    padding-bottom: 0px; 
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.detail-row.reverse {
    flex-direction: row-reverse;
}

.detail-text {
    flex: 1;
}

.category {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.detail-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.detail-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.detail-text ul {
    list-style: none;
    padding: 0;
}

.detail-text li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-main);
    font-weight: 500;
}

.detail-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.detail-visual {
    flex: 1;
}

.visual-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.visual-box:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.visual-box:hover .responsive-img {
    transform: scale(1.08);
}

.cta-section {
    display: block;
    width: 100%;
    padding: 40px 20px 140px 20px; 
    text-align: center;
    clear: both;
    background-color: #ffffff;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin: 0 0 12px 0;
    font-weight: 600;
    color: #1d1d1f;
}

.cta-content p {
    color: #86868b;
    font-size: 1.1rem;
    margin: 0 0 16px 0; 
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1d1d1f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 980px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative; 
    z-index: 10;
}

.cta-button:hover {
    background-color: #000000;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-button:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .detail-row, .detail-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .services-hero {
        padding-top: 80px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding-top: 20px;
    }
}
/* Imprint */

.imprint-content {
    padding: 120px 24px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.imprint-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.02em;
}

.imprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.imprint-section {
    padding: 24px;
    background: #f5f5f7;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.imprint-section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

.imprint-section p {
    font-size: 0.95rem;
    color: #515154;
    line-height: 1.6;
    margin: 0;
}

.imprint-section a {
    color: #0071e3;
    text-decoration: none;
}

.imprint-section a:hover {
    text-decoration: underline;
}

.full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .imprint-grid {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: span 1;
    }
    
    .imprint-content {
        padding-top: 100px;
    }
}