@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

:root {
    --primary-color: var(--bs-primary);
    --secondary-color: var(--bs-secondary);
    --accent-color: #b0b8c2;
    --light-color: #f5f5f5;
    --success-color: #58a4b0;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-color);
    color: var(--primary-color);
    line-height: 1.6;
}

.row {
    margin-right: 0;
}

.form-container {
    max-width: 580px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.form-header {
    padding: 30px;
    background-color: var(--primary-color);
    color: white;
}

.form-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.form-subtitle {
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.form-body {
    padding: 30px;
}

.form-control {
    background-color: #f9f9f9;
    border: none;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.form-control:focus {
    background-color: white;
    box-shadow: 0 0 0 2px rgba(45, 49, 66, 0.2);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.form-check-input:checked {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.form-check-label {
    font-size: 0.85rem;
    color: var(--secondary-color);
    padding-left: 5px;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.privacy-link:hover {
    color: var(--success-color);
}

.submit-btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 93, 117, 0.2);
}

/* Erfolgsbenachrichtigung */
.success-message {
    display: none;
    padding: 50px 30px;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    animation: scaleIn 0.5s 0.3s both cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.success-text {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.success-btn {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    padding: 12px 25px;
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.success-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.required-mark {
    color: #dc3545;
    margin-left: 3px;
}

.price-container {
    max-width: 1140px;
    margin: 0 auto;
}

.price-header {
    text-align: center;
    margin-bottom: 50px;
}

.price-title {
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.price-subtitle {
    color: var(--secondary-color);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.price-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 6px 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px 0 0 4px;
}

.price-card-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.price-plan {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.price-description {
    font-size: 0.95rem;
    color: var(--secondary-color);
    max-width: 250px;
    margin: 0 auto;
    height: 70px;
}

.price-card-body {
    padding: 30px;
}

.price-features {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px;
}

.price-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
}

.price-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    margin-right: 10px;
    color: var(--success-color);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.price-features .not-included {
    color: #BDBDBD;
    text-decoration: line-through;
}

.price-features .not-included .feature-icon {
    color: #BDBDBD;
}

.price-btn {
    width: 100%;
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.price-btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.price-btn-primary:hover {
    background-color: #222222;
    border-color: #222222;
}

.price-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.price-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin: 0 10px;
}

.toggle-active {
    color: var(--primary-color);
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--accent-color);
    transition: .4s;
    border-radius: 34px;
}

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

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

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

.monthly-price,
.annual-price {
    display: none;
}

.active-price {
    display: block;
}

.save-badge {
    display: inline-block;
    background-color: var(--success-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 500;
    vertical-align: middle;
}

@media (max-width: 991px) {
    .price-card {
        margin-bottom: 30px;
    }
}

.section-padding {
    padding: 100px 0;
}

.bg-light-section {
    background-color: var(--light-color);
}

/* Header Styles */
.page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('/api/placeholder/1920/800') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.header-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.header-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
}

/* Team Section */
.team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-position {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-bio {
    color: #666;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Mission Section */
.mission-box {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* History Section */
.history-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    padding: 20px 30px 20px 70px;
    background-color: white;
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    left: 20px;
    top: 30px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 3px;
    height: calc(100% + 30px);
    background-color: var(--light-color);
    left: 26px;
    top: 45px;
    z-index: -1;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-text {
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .page-header {
        padding: 100px 0;
    }

    .header-title {
        font-size: 2.8rem;
    }

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

    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 80px 0;
    }

    .header-title {
        font-size: 2.3rem;
    }

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

    .section-padding {
        padding: 50px 0;
    }
}