:root {
    --primary-color: var(--bs-primary);
    --secondary-color: var(--bs-secondary);
    --accent-color: #FFD700;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    --text-color: #343a40;
    --light-text: #f8f9fa;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.neue-hero {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    position: relative;
    overflow: hidden;
    color: white;
    padding: 0;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-title span {
    color: #FFD700;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 300;
}

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

.hero-btn-primary {
    background: #D8232A;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #D8232A;
    display: inline-flex;
    align-items: center;
}

.hero-btn-primary:hover {
    background: #b91e24;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(216, 35, 42, 0.2);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.hero-btn-icon {
    margin-left: 10px;
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-icon {
    font-size: 1.5rem;
}

/* Swiss flag element */
.swiss-flag {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background-color: rgba(218, 41, 28, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.swiss-cross {
    position: relative;
    width: 250px;
    height: 250px;
}

.swiss-cross::before,
.swiss-cross::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.15);
}

.swiss-cross::before {
    width: 250px;
    height: 70px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.swiss-cross::after {
    width: 70px;
    height: 250px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.animated-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(216, 35, 42, 0), rgba(216, 35, 42, 0.5), rgba(216, 35, 42, 0));
    height: 2px;
    width: 100%;
    top: 20%;
    animation: line-animation 15s infinite linear;
    opacity: 0.5;
}

.animated-line:nth-child(2) {
    top: 40%;
    animation-delay: -5s;
}

.animated-line:nth-child(3) {
    top: 60%;
    animation-delay: -10s;
}

@keyframes line-animation {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .swiss-flag {
        width: 400px;
        height: 400px;
        right: -100px;
    }

    .swiss-cross {
        width: 200px;
        height: 200px;
    }

    .swiss-cross::before {
        width: 200px;
        height: 60px;
    }

    .swiss-cross::after {
        width: 60px;
        height: 200px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .swiss-flag {
        width: 300px;
        height: 300px;
        right: -50px;
    }

    .swiss-cross {
        width: 150px;
        height: 150px;
    }

    .swiss-cross::before {
        width: 150px;
        height: 50px;
    }

    .swiss-cross::after {
        width: 50px;
        height: 150px;
    }
}

@media (max-width: 767px) {
    .neue-hero {
        height: auto;
        min-height: 600px;
        padding: 120px 0 100px;
    }

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

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

    .hero-stats {
        gap: 20px;
        margin-top: 50px;
    }

    .swiss-flag {
        width: 250px;
        height: 250px;
        opacity: 0.2;
    }

    .swiss-cross {
        width: 120px;
        height: 120px;
    }

    .swiss-cross::before {
        width: 120px;
        height: 40px;
    }

    .swiss-cross::after {
        width: 40px;
        height: 120px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        justify-content: space-between;
    }

    .hero-stat-number {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.swiss-cross {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 1rem;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background-color: white;
}

.mission-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.mission-card-body {
    padding: 2rem;
}

/* Why Best Section */
.why-best {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: white;
}

.why-best .section-title::after {
    background-color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* News Section */
.news {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.news-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    border-left: 5px solid transparent;
    height: 100%;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.news-item-1 {
    border-top: 5px solid var(--primary-color);
}

.news-item-2 {
    border-top: 5px solid var(--secondary-color);
}

.news-item-3 {
    border-top: 5px solid var(--accent-color);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: block;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.news-excerpt {
    color: #6c757d;
    margin-bottom: 1rem;
}

.featured-news {
    background: linear-gradient(135deg, #fff, #f1f1f1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
}

.featured-badge {
    background-color: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: white;
}

.price-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

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

.price-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.price-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-period {
    font-size: 0.85rem;
    opacity: 0.8;
}

.price-body {
    padding: 2rem;
}

.price-feature {
    margin-bottom: 1rem;
}

.price-feature i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.price-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.price-btn:hover {
    background-color: #0a2a80;
}

.premium-card .price-header {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

.premium-card .price-btn {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

.premium-card .price-btn:hover {
    background-color: #e6c200;
}

/* Toast notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.toast {
    background-color: white;
    color: var(--text-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    max-width: 350px;
    opacity: 0;
    transition: all 0.3s;
}

.toast.show {
    opacity: 1;
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.toast-body {
    padding-top: 0.5rem;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 600;
    color: var(--text-color);
    padding: 0.5rem 1rem !important;
    transition: all 0.3s;
}

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

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15, 54, 165, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive */
@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

.neue-kontakt-sektion {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.kontakt-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.kontakt-titel {
    text-align: center;
    margin-bottom: 50px;
    color: #0F36A5;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
}

.kontakt-titel::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #D8232A;
}

.neue-kontakt-form {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #343a40;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #0F36A5;
    box-shadow: 0 0 0 3px rgba(15, 54, 165, 0.1);
    outline: none;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.form-checkbox {
    margin-right: 10px;
    margin-top: 3px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    color: #6c757d;
}

.checkbox-label a {
    color: #0F36A5;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #0F36A5, #0a2980);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0a2980, #061d5c);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
    .grid-form {
        grid-template-columns: 1fr;
    }
}

/* Toast Benachrichtigung */
.toast-benachrichtigung {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    border-left: 5px solid #28a745;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width: 350px;
    display: none;
}

.toast-titel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.toast-titel h5 {
    margin: 0;
    font-weight: 600;
    color: #343a40;
    display: flex;
    align-items: center;
}

.toast-titel h5 i {
    color: #28a745;
    margin-right: 10px;
    font-size: 20px;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #6c757d;
}

.toast-inhalt {
    color: #6c757d;
}

.toast-benachrichtigung.sichtbar {
    opacity: 1;
    display: block;
}