:root {
    --primary-color: #68838B;
    --dark-color: #121212;
    --light-color: #ffffff;
    --gradient: linear-gradient(135deg, #68838B 0%, #526a71 100%);
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--dark-color);
    color: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img,
.logo-img {
    height: 70px; /* oder je nach gewünschter Größe */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.language-switch {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.language-switch img {
    width: 20px;
    margin-right: 5px;
}




/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 150px;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero .container {
    max-width: 1600px; /* Increased container width */
    width: 100%;
    padding: 0 20px; /* Added side padding */
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 900px; /* Increased max-width for wider text */
}

.hero p {
    font-size: 20px;
    max-width: 700px; /* Slightly increased width */
    margin: 0 auto 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 100px; /* Increased bottom margin */
}

.cta-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: var(--gradient);
    color: var(--light-color);
    border: none;
}

.secondary-btn {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.phone-mockup {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px; /* Mehr Abstand nach unten */
}

.screen-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 80px;
    padding: 20px;
    box-sizing: border-box;
}

.screen-image {
    width: 350px;
    height: 715px;
    border-radius: 36px;
    object-fit: cover;
    border: 12px solid #333;
    transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 1600px) {
    .screen-content {
        gap: 60px;
    }

    .screen-image {
        width: 330px;
        height: 675px;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 48px;
    }

    .screen-content {
        gap: 50px;
    }

    .screen-image {
        width: 300px;
        height: 610px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 150px;
    }

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

    .screen-content {
        gap: 40px;
    }

    .screen-image {
        width: 280px;
        height: 570px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .screen-content {
        gap: 40px;
        padding: 40px 20px;
    }

    .screen-image {
        width: 280px;
        height: 570px;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
        padding: 12px 20px;
    }

    .screen-content {
        gap: 30px;
        padding: 30px 15px;
    }

    .screen-image {
        width: 260px;
        height: 530px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .store-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .store-button {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .screen-content {
        gap: 25px;
        padding: 25px 10px;
    }

    .screen-image {
        width: 240px;
        height: 490px;
        border-width: 8px;
    }

    .logo img {
        height: 50px;
    }
}

/* Spezifische Anpassungen für Galaxy S5 und ähnliche Geräte */
@media screen and (max-width: 360px) and (max-height: 640px) {
    .phone-mockup {
        width: 100%;
        padding: 0;
        margin: 0 0 150px 0; /* Noch mehr Abstand nach unten für kleine Geräte */
    }

    .screen-content {
        width: 100%;
        gap: 40px; /* Mehr Abstand zwischen den Bildern */
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .screen-image {
        width: 220px;
        height: 450px;
        border-width: 6px;
        margin: 0;
        padding: 0;
    }

    /* Stelle sicher, dass die nächste Section nicht überlappt */
    .features {
        margin-top: 50px;
        position: relative;
        z-index: 1;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }

    .cta-buttons {
        gap: 10px;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 15px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Optional hover effect */
.screen-image:hover {
    transform: scale(1.05);
}



/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: rgba(104, 131, 139, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-color);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

/* How it Works */
.how-it-works {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
}

.step-number {
    font-size: 72px;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    left: 0;
    top: -40px;
}

.step-image {
    flex: 1;
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step h3 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.step h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}






/* Section Video */
.app-mockup-video {
    padding: var(--section-padding);
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.app-mockup-video .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.app-mockup-video .phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.app-mockup-video .phone {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 9/19.5;
    position: relative;
    transition: transform 0.3s ease;
}

.app-mockup-video .phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
}

.app-mockup-video .screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup-video .mockup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px;
}

/* Responsive Anpassungen für das Mockup-Video */
@media (max-width: 1600px) {
    .app-mockup-video .phone {
        max-width: 380px;
    }
}

@media (max-width: 1200px) {
    .app-mockup-video .phone {
        max-width: 360px;
    }
}

@media (max-width: 1024px) {
    .app-mockup-video .phone {
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .app-mockup-video .phone {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .app-mockup-video .phone {
        max-width: 300px;
    }
}

@media (max-width: 360px) {
    .app-mockup-video .phone {
        max-width: 280px;
    }
}

/* Add this to maximize video size within container */
.mockup-video {
    max-width: none; /* Override any max-width constraints */
    max-height: none; /* Override any max-height constraints */
    width: 100%;
    height: 100%;
}

.screen-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


/* Optional: Hover effect */
.app-mockup-video .phone:hover {
    transform: scale(0.7);
}





/* Download Section */
.download {
    padding: var(--section-padding);
    background: var(--gradient);
    text-align: center;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.store-button {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--dark-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--light-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 220px; /* Feste Breite für alle Buttons */
    height: 60px; /* Feste Höhe für alle Buttons */
    justify-content: flex-start; /* Konsistente Ausrichtung */
    box-sizing: border-box; /* Berücksichtigt Padding in der Gesamtbreite */
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.store-icon {
    font-size: 30px;
    margin-right: 15px;
    flex-shrink: 0; /* Verhindert Schrumpfen des Icons */
    width: 30px; /* Feste Icon-Breite */
    text-align: center; /* Zentriert das Icon */
}

.store-text {
    text-align: left;
    flex: 1; /* Nimmt verfügbaren Platz ein */
    min-width: 0; /* Erlaubt Text-Overflow */
    overflow: hidden; /* Versteckt überlaufenden Text */
}

.store-text small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap; /* Verhindert Zeilenumbrüche */
    overflow: hidden; /* Versteckt überlaufenden Text */
    text-overflow: ellipsis; /* Zeigt ... bei zu langem Text */
}

.store-text strong {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap; /* Verhindert Zeilenumbrüche */
    overflow: hidden; /* Versteckt überlaufenden Text */
    text-overflow: ellipsis; /* Zeigt ... bei zu langem Text */
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-color);
}

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

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

.footer-links a {
    color: var(--light-color);
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: bottom 0.5s ease;
    border-top: 1px solid rgba(104, 131, 139, 0.3);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

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

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

.cookie-button {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.customize-button {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--primary-color);
}

.accept-button {
    background: var(--gradient);
    color: var(--light-color);
}

.cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #121212;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(104, 131, 139, 0.3);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--light-color);
}

.close-modal {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-modal:hover {
    opacity: 1;
}

.cookie-categories {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.category-title {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.category-required {
    opacity: 0.7;
}

.required-label {
    margin-left: 10px;
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 10px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.modal-button {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.reject-button {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.save-button {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--primary-color);
}

.accept-all-button {
    background: var(--gradient);
    color: var(--light-color);
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Language Switcher */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}

.toggle-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Media queries for cookie elements */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-button {
        width: 100%;
        text-align: center;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-button {
        width: 100%;
    }
    
    .modal-content {
        width: 90%;
    }
}

/* Parallax and Scroll Effects */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.parallax-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(104, 131, 139, 0.2) 0%, rgba(104, 131, 139, 0.05) 100%);
    filter: blur(60px);
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    top: 40%;
    right: -200px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .step {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .store-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .store-button {
        width: 280px; /* Feste Breite für mobile Geräte */
        height: 60px; /* Behält die gleiche Höhe */
        justify-content: center; /* Zentriert den Inhalt auf mobilen Geräten */
        box-sizing: border-box; /* Berücksichtigt Padding in der Gesamtbreite */
    }
    
    .nav-links {
        display: none;
    }
    
    .phone {
        width: 220px;
        height: 440px;
    }
}

/* Zusätzliche Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Imprint Page Responsive Styles */
    .imprint-content {
        padding: 20px;
    }

    .imprint-content h3 {
        font-size: 20px;
    }

    .imprint-content p, .imprint-content ul {
        font-size: 14px;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 32px;
        text-align: center;
    }

    .hero p {
        font-size: 16px;
        padding: 0 15px;
    }

    .phone-mockup {
        height: 400px;
        margin-top: 30px;
    }

    .screen-content {
        flex-direction: column;
        gap: 15px;
    }

    .screen-image {
        width: 200px;
        height: 400px;
    }

    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Download Section Mobile */
    .store-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .store-button {
        width: 280px; /* Feste Breite für mobile Geräte */
        height: 60px; /* Behält die gleiche Höhe */
        justify-content: center; /* Zentriert den Inhalt auf mobilen Geräten */
        box-sizing: border-box; /* Berücksichtigt Padding in der Gesamtbreite */
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
    }

    /* Hamburger Menu Styles */
    .hamburger {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: var(--light-color);
        margin: 5px 0;
        transition: 0.4s;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .nav-links {
        display: none;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }
}

/* Mobile Navigation Adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .language-switch {
        margin-top: 10px;
    }
}

/* Smaller Mobile Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        padding: 12px 30px;
    }

    .imprint-content h3 {
        font-size: 18px;
    }

    .imprint-content p, .imprint-content ul {
        font-size: 13px;
    }
}

/* Parallax Adjustments for Mobile */
@media (max-width: 768px) {
    .parallax-circle {
        display: none;
    }
}

