* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(to bottom, #ffffff, #d3e3fd);
    color: #333;
    font-size: 1.2rem;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #eaf2f4, #f4f4f9);
    padding: 10px 20px;
    color: #0091fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Logo */
nav .logo-img {
    font-size: 1.5rem;
    font-weight: bold;
}

nav .logo-img img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

/* Navigation-Links */
nav ul {
    list-style: none;
    display: flex; /* Korrektur */
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #0091fa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    padding: 5px 10px;
}

nav ul li a:hover {
    color: #007acc;
    background: rgba(0, 145, 250, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    height: 65vh; /* Größerer Header für mehr Inhalt */
    background: url('/assets/images/banner.svg') no-repeat center center/cover;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

/* Container für den linken Inhalt */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 45%;
}

/* Überschrift */
.header h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3rem;
    margin-bottom: 20px;
    color: #333;
}

/* Beschreibung & Zusätzlicher Text */
.header p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.6rem;   /* Optional: Macht den Text kräftiger */
}

/* Grüne Häkchen */
.green-check {
    color: #00c853; /* Helle Grünfarbe */
    font-weight: bold;
    margin-right: 5px; /* Kleiner Abstand nach dem Häkchen */
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #0091fa;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 15px; /* Abstand nach dem Text */
    margin-bottom: 15px;
}

.cta-button:hover {
    background: #0071fa;
}

/* Bild auf der rechten Seite mit max. 320px */
.header-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.header-image img {
    max-width: 320px; /* Maximale Größe von 320px */
    height: auto;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .header-content {
        max-width: 100%;
        align-items: center;
    }

    .header-image {
        justify-content: center;
        margin-top: 20px;
    }

    .header-image img {
        max-width: 80%;
    }
}

/* Überschriften */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    line-height: 3rem;
    color: #333;
    margin: 40px 0 20px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

/* Zentrierter Button */
.center-button {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Feature-Card */
.feature-card {
    display: flex;
    background: white;
    border-radius: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1000px;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    // cursor: pointer;  /* Optional: Cursor zeigt Interaktivität */
}

.feature-card:hover {
    transform: scale(1.00); /* Etwas stärkerer Zoom für besseren Effekt */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Tieferer Schatten */
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-content .btn {
    padding: 12px 25px;
    background: #0091fa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    text-align: center;
}

.feature-content .btn:hover {
    background: #0066ff;
}

/* Features Sektion */
.features-section {
    padding: 60px 20px;
    background: #f4f4f9;
    text-align: center;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature-Box */
.feature-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box img {
    width: 80px;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #0091fa;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 1rem;
    color: #333;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* CTA Bereich */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #0091fa, #0066cc);
    color: #333;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-section-2 {
    text-align: center;
    padding: 60px 20px;
    color: #333;
}

.cta-section-2 h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section-2 p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.cta-button-2 {
    display: inline-block;
    padding: 15px 30px;
    background: #0091fa;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 15px; /* Abstand nach dem Text */
    margin-bottom: 15px;
}

.cta-button-2:hover {
    background: #0071fa;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Preispläne (Flipcards) */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.flip-card {
    background-color: transparent;
    width: 250px;
    height: 350px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.9s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border: 1px solid #cccccc;
}

.flip-card-front {
    color: 333;
    font-size: 1.4rem;
    line-height: 1.4;
}

.flip-card-back {
    background: white;
    color: #008833;
    transform: rotateY(180deg);
    text-align: center;
}

.basic { background: #fff; }
.pro { background: #fff; }
.business { background: #fff; }

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0091fa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn:hover {
    background: #0071fa;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #0091fa, #0061fa);
    color: #fff;
    padding: 30px 20px;
    font-size: 1rem;
}

/* Container für die 3 Spalten */
.footer-container {
    display: flex;
    justify-content: center; /* Zentriert die Spalten als Ganzes */
    gap: 50px; /* Abstand zwischen den Spalten */
    max-width: 1000px; /* Begrenzt die Breite */
    margin: 0 auto; /* Zentriert den gesamten Container */
}

/* Jede Footer-Sektion */
.footer-section {
    flex: 1;
    min-width: 250px;
}

/* Überschriften */
.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    text-decoration: underline;
    color: #ffcc00;
}

/* Copyright-Bereich */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive: Spalten untereinander auf kleinen Bildschirmen */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

    .footer-section ul {
        padding-left: 0;
    }
}

