/* ==========================================================================
   FONTS
   ========================================================================== */

@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Buttercell Script';
    src: url('fonts/ButtercellScript.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 400;
}

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

/* ==========================================================================
   HEADER
   ========================================================================== */

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5aa0;
}

.logo img {
    width: 10rem;
    margin-top: 1rem;
}

.features-grid-1 img {
    width: 33%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.features-grid-2 img {
    width: 22%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.logo-unten {
    display: flex;
    justify-content: flex-end;
}

.logo-unten img {
    width: 120px;
}

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

.nav-links a {
    text-decoration: none;
    transition: color 0.3s;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    background: url(img/Campus_Hintergrund_01.jpg) no-repeat center center/cover;
    padding: 4rem 0;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    right: 15%;
    width: 300px;
    height: 256px;
    background: url(img/arrows_blue.svg) no-repeat center;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
    bottom: -43px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-content img {
    position: absolute;
    right: -14rem;
    top: 3rem;
}

.hero-badge {
    background: #28366d;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.end-badge {
    justify-content: center;
    background: #ff6b35;
    color: blue;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #7091b4;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: black;
    max-width: 600px;
}

.hero-tagline-div {
    display: flex;
    justify-content: flex-end;
}

.hero-tagline {
    font-size: 2.3rem;
    color: black;
    margin-top: 2rem;
    text-align: left;
    font-family: 'Buttercell Script', cursive;
    font-weight: normal;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.cta-container {
    text-align: center;
}

.cta-button {
    background: #28366d;
    color: white;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #1e4080;
}

.cta-button-first {
    background: #28366d;
    color: white;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    margin-top: 2rem;
}

.cta-button-first:hover {
    background: #1e4080;
}


.cta-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.cta-secondary:hover {
    background: #2c5aa0;
    color: white;
}

.cta-btn {
    margin-top: 20px;
    background: #001f5b;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.cta-btn:hover {
    background: #0044cc;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features {
    padding: 4rem 0;
    background: white;
}

.features h1 {
    color: black;
    text-align: center;
    font-size: 2rem;

}

.features-intro {
    text-align: center;
    justify-content: center;
    padding: 2rem 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.info-4 {
    background-color: #28356d;
    margin-top: 6rem;
    color: white;
}

.features-intro-3 {
    text-align: center;
    justify-content: center;
    padding: 2rem 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.features-intro h2 {
    font-size: 1.5rem;
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

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

.features-grid-2 {
    display: grid;
    max-width: 1000px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: left;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #383636;
    font-size: 1rem;
    text-align: center;
}

/* ==========================================================================
   WHAT IS SECTION
   ========================================================================== */

.what-is {
    padding: 4rem 0;
    background: #f4f0e6;
}

.what-is h2 {
    font-size: 2.5rem;
    color: #28366d;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

.what-is p {
    text-align: center;
    font-size: 1.4rem;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    z-index: 0;
}

.benefit-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    clip-path: polygon(2% 0%, 90% 0, 98% 100%, 10% 100%);
    z-index: -1;
}

.benefit-item img {
    width: 100px;
    margin-right: 1rem;
}

.benefit-icon {
    background: #2c5aa0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #28366d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-text p {
    text-align: left;
    color: #28366d;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.how-it-works {
    padding-bottom: 4rem;
    padding-top: 4rem;
    background: #f6f2eb;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #28366d;
    font-weight: bold;
    margin-bottom: 3rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    gap: 2rem;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
    border-top: #7090b4 1rem solid;
    height: 20rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 80%;
}


.faq-flex {
    display: flex;
}


.step-number {
    background: #7090b4;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    margin-top: 1.5rem;
}

.step h4 {
    color: black;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 1rem;
}

.step p {
    font-size: 0.9rem;
}

/* ==========================================================================
   CAMPUS SECTION
   ========================================================================== */

.campus-section {
    background-color: #f6f2eb;
    padding: 60px 20px;
}

.campus-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.campus-left {
    background-color: #7090b4;
    padding: 40px;
    border-radius: 8px;
}

.campus-left h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.campus-right {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
}

.campus-box {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.campus-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
}

.campus-box ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.campus-box ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ==========================================================================
   ACCORDION
   ========================================================================== */

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #fff;
    overflow: hidden;
    border-radius: 29px;
    width: 76%;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    outline: none;
}

.accordion-header:after {
    content: "∧";
    float: right;
    transition: transform 0.3s;
}

.accordion-header.active:after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    padding: 0 16px;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    margin: 12px 0;
    font-size: 0.9rem;
    color: #e6e6e6;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing {
    padding: 4rem 0;
    background: #f4f0e6;
}

.pricing h2 {
    text-align: left;
    font-size: 2rem;
    color: black;
}

.pricing .subtitle {
    text-align: center;
    color: #7090b4;
    font-weight: bold;
    font-size: 1.5rem;
    padding-right: 31rem;
}

.pricing .subtitle-sub {
    text-align: right;
    position: relative;
    color: black;
    font-weight: bold;
    font-size: 1rem;
    margin-top: -1.4rem;
    padding-right: 37.5rem;
    margin-bottom: 3rem;
}

.pricing .subtitle-sub::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #7090b4;
    margin-top: 3px;
    margin-left: 28.4rem;
    margin-right: 0;
}

.pricing-table {
    margin: 0 auto;
    padding: 1rem;
    border-radius: 10px;
    display: grid;
    gap: 10px;
}

.pricing-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pricing-header > div {
    background: #6d6e6e;
    color: black;
    align-content: center;
    font-weight: bold;
    text-align: center;
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pricing-row > div {
    background: #e1e1e1;
    text-align: center;
    font-weight: bold;
    padding: 1rem;
    color: black;
}

.pricing-row > div:first-child {
    background-color: #7090b4;
    font-weight: bold;
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */

.video-container {
    background-color: #7090b4;
}

.section-video-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.text-box {
    flex: 1;
    padding: 4rem 3rem;
    z-index: 1;
}

.text-box h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    color: white;
}

.text-box p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: bold;
    color: white;
}

.text-box .hero-tagline {
    font-size: 1.5rem;
    text-align: left;
    font-weight: normal !important;
}

.video-box {
    flex: 1;
    position: relative;
    max-width: 600px;
    margin-right: 3rem;
}

.video-box video {
    max-width: 100%;
    width: 600px;
    max-width: 100%;
}

.video-box img {
    width: 100%;
    display: block;
}

.video-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #6d89a7;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button::before {
    content: "";
    margin-left: 8px;
    border-style: solid;
    border-width: 20px 0 20px 32px;
    border-color: transparent transparent transparent #fff;
}

/* ==========================================================================
   DECORATIVE ELEMENTS
   ========================================================================== */

#deep-blue-1,
#deep-blue-2 {
    width: 200px;
}

#deep-blue-2 {
    rotate: 180deg;
}

#deep-blue-3 {
    width: 200px;
    position: relative;
    left: -24rem;
}

#deep-blue-4 {
    width: 200px;
    rotate: 180deg;
    top: -64px;
    position: relative;
    right: -18rem;
}

#arrow-white-right {
    width: 587px;
    position: absolute;
    top: -104px;
    right: -2rem;
}

#arrow-white-left {
    width: 590px;
    position: absolute;
    top: 1959px;
    z-index: 1000;
    left: -24rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials {
    padding: 4rem 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.testimonial .author {
    color: #2c5aa0;
    font-weight: bold;
    display: flex;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq {
    padding: 4rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.faq .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-new {
    width: 25%;
    padding: 1.5rem;
}


.faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.faq-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

/* Campus FAQ Section */
.campusfaq-section {
    width: 100%;
    background: #ffffff;
}

.campusfaq-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin: 0 auto;
    background-color: #6b86a6;
    min-height: 520px;
    justify-content: center;
}

.campusfaq-left {
    order: 1;
    flex: 1 1 auto;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1600&auto=format&fit=crop&ixlib=rb-4.0.3&s=');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #fff;
    min-width: 250px;
}

.campusfaq-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 40, 0.28);
    z-index: 0;
}

.campusfaq-left .campusfaq-left-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
}

.campusfaq-left h2 {
    font-size: 2.1rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.campusfaq-left p.campusfaq-sub {
    font-style: italic;
    font-size: 1.05rem;
    color: #f3efe8;
}

.campusfaq-right {
    order: 2;
    width: 420px;
    background-color: #6b86a6;
    color: #fff;
    padding: 56px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.campusfaq-right h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.campusfaq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}


.campusfaq-btn {
    display: flex;
    justify-content: center;
}

.campusfaq-item {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 2px 18px;
    color: #fff;
    font-size: 0.97rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease;
    position: relative;
}

.campusfaq-item::after {
    content: "›";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    opacity: 0.9;
}

.campusfaq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.campusfaq-cta-text {
    margin-top: 6px;
    font-size: 1.02rem;
    text-align: center;
}

.campusfaq-cta-btn {
    margin-top: 12px;
    align-self: start;
    background: #0f2558;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.campusfaq-cta-btn:hover {
    background: #162f86;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.final-cta .cta-button {
    background: #ff6b35;
}

.final-cta .cta-button:hover {
    background: #e55a2b;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background: #1a365d;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* ==========================================================================
   POPUPS
   ========================================================================== */

.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.exit-popup-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    position: relative;
}

.exit-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.exit-popup h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

#exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #f4f0e6;
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.popup-inner {
    display: flex;
    gap: 20px;
    align-items: center;
}

.popup-text {
    flex: 1;
    text-align: left;
}

.popup-text h2 {
    font-weight: bold;
    font-size: 1.5rem;
}

.popup-text p {
    font-size: 1.3rem;
    line-height: normal;
    margin-top: 10px;
}

.popup-video {
    flex: 1;
    position: relative;
}

.popup-arrows {
    position: absolute;
    bottom: -20px;
    right: 0;
    display: flex;
    gap: 5px;
    color: #e63946;
    font-size: 2rem;
}

/* ==========================================================================
   CAROUSELS
   ========================================================================== */

.carousel-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.carousel-heading img {
    width: 300px;
}

.carousel-3d-container {
    perspective: 1000px;
    overflow: hidden;
    position: relative;
    height: 400px;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-3d-track {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.carousel-3d-slide {
    position: absolute;
    width: 300px;
    transition: transform 0.5s ease, opacity 0.5s ease, scale 0.5s ease;
    opacity: 0.8;
}

.carousel-3d-slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.carousel-3d-slide.current-slide {
    transform: translateZ(200px) scale(1.2);
    z-index: 100;
    opacity: 1;
}

.carousel-3d-slide.prev-slide {
    transform: translateX(-250px) translateZ(-200px) scale(0.8);
    z-index: 90;
}

.carousel-3d-slide.next-slide {
    transform: translateX(250px) translateZ(-200px) scale(0.8);
    z-index: 90;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 1.5rem;
    border-radius: 50%;
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.info-2 {
    background-color: #f4f0e6;
}

.themenwelt-bckg {
    background-color: #7090b4;
}

.campus-themenwelt {
    color: white;
}

.highlight-text {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
}

.highlight-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.text-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-arrows H2 {
    color: #28366d;
}


.handwritten {
    font-family: "Brush Script MT", cursive;
    font-size: 1.4rem;
    font-style: italic;
}

.icons-text {
    text-align: center;
    color: black;
    font-size: 1.2rem;
}

#blick {
    margin-top: 1rem;
    color: white;
    text-align: left;
    line-height: normal;
    font-weight: bold;
    font-size: 3rem;
}

/* ==========================================================================
   SPECIFIC SECTIONS
   ========================================================================== */

.topics {
    padding: 4rem 0;
    background: #f8f9fa;
}

.topics h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.topics .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s;
}

.topic-card:hover {
    transform: translateY(-5px);
}

.topic-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.courses-preview {
    padding: 4rem 0;
    background: #7090b4;
}

.courses-preview h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.courses-preview h3 {
    font-size: 1.5rem;
    text-align: center;
}

.courses-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.course-item {
    padding: 1rem 2rem;
    border-top: 1px black solid;
    margin-top: 1rem;
    color: black;
    text-align: center;
    font-weight: 600;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.why-left h2 {
    font-size: 3rem;
    line-height: normal;
    margin-bottom: 10px;
    color: #28366d;
    font-weight: bold;
}

.why-left .subtitle {
    color: black;
    font-family: 'Buttercell Script', cursive;
}

.why-right {
    margin-left: 100px;
}


.why-right .why-box {
    position: relative;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    z-index: 0;
}

.why-right .why-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -68px;
    width: 104%;
    height: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    clip-path: polygon(2% 0%, 90% 0, 98% 100%, 10% 100%);
    z-index: -1;
    border-radius: 8px;
}

.why-right h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #223366;
}

.unten-section {
    background-image: url("img/Campus_Hintergrund_08.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    height: 52rem;
}

.unten-overlay {
    background-color: #7090b4;
    max-width: 700px;
    margin: 100px auto 30px auto;
    padding: 40px;
    text-align: center;
    top: 15rem;
    position: relative;
    color: #fff;
    /*
    height: 20rem;
    */
}

.unten-title {
    font-size: 38px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 20px;
    color: #28336d;
    text-transform: uppercase;
}

.unten-text {
    font-size: 1.7rem;
    font-weight: bold;
    margin-top: 2rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.unten-btn {
    top: 15rem;
    position: relative;
    display: inline-block;
    justify-content: center;
    background-color: #1a2b5c;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.unten-btn:hover {
    background-color: #253b80;
}

.btn-unten,
.btn-unten-unten,
.btn-unten-unten-unten {
    display: flex;
    justify-content: center;
}

.btn-unten-unten a {
    text-align: center;
    width: 271px;
}

.btn-unten-unten-unten {
    display: flex;
    align-items: center;
}

.list-preise {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

ul.ul-preise {
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}


/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1350px) {
    #arrow-white-left {
        display: none;
    }

    .campus-right {
        display: none !important;
    }

    .campus-container {
        display: unset !important;
    }
}

@media (max-width: 1200px) {
    .pricing .subtitle-sub {
        text-align: left;
        margin-top: 0.7rem;
        padding-right: 0;
    }

    .pricing .subtitle {
        text-align: left;
        padding-right: 0;
    }

    .pricing .subtitle-sub::after {
        margin-left: 3rem;
    }
}

@media (max-width: 950px) {
    .campusfaq-inner {
        flex-direction: column;
        max-width: 940px;
    }

    .campusfaq-right {
        width: 100%;
        order: 2;
        padding: 36px;
    }

    .campusfaq-left {
        order: 1;
        min-height: 320px;
        padding: 36px;
    }
}

@media (max-width: 880px) {
    #arrow-white-right {
        display: none;
    }

    .ul-preise {
        display: unset !important;
    }

    .carousel-heading {
        display: unset !important;
    }

    .section-video-text {
        flex-direction: column;
    }

    .video-box {
        margin-right: unset !important;
        padding-bottom: 2rem;
    }

    .why-right .why-box::before {
        width: 124%;
    }
}

@media (max-width: 768px) {
    #deep-blue-1, #deep-blue-2 {
        display: none;
    }

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

    .what-is-content {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step::after {
        display: none;
    }


    .courses-list {
        flex-direction: column;
        align-items: center;
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

    .why-left {
        text-align: center;
        margin-top: 0 !important;
    }
}

.why-left {
    margin-top: 9rem;
}

/* ==========================================================================
   OVERRIDES & SPECIAL CASES
   ========================================================================== */

/*.what-is-content .cta-button {
    width: 54% !important;
}*/

.campus-container .cta-btn {
    margin-left: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.black {
    color: black;
}

/* ==========================================================================
WEBINARE
   ========================================================================== */

.webinar-item {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #ddd;
    border-left: 6px solid #7091b4;
    border-radius: 6px;
    margin-bottom: 30px;
    margin-top: 3rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.2s ease-in-out;
}

.webinar-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.teaser-image {
    flex: 0 0 280px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.teaser-image img {
    width: 100%;
    height: auto;
    display: block;
}

.webinar-content {
    flex: 1;
    padding: 20px;
}

.webinar-content h3 {
    color: #7091b4;
    font-size: 1.3em;
    margin-top: 0;
}

.meta-data p {
    margin: 5px 0;
    color: #444;
}

.webinar-body {
    margin: 15px 0;
    color: #333;
    line-height: 1.5;
}

.webinar-body a {
    color: #333;
    font-weight: 600;

}

.webinar-body a:hover {
    color: #201d1d;
}

.sign-on {
    margin-top: 15px;
}

.sign-on a,
.sign-on button {
    display: inline-block;
    background-color: #7091b4;
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.sign-on a:hover,
.sign-on button:hover {
    background-color: #28366d;
}

@media (max-width: 768px) {
    .webinar-item {
        flex-direction: column;
    }

    .teaser-image {
        flex: none;
    }
}

@media (max-width: 1140px) {
    #header-video {
        display: none;
    }
}

@media (max-width: 760px) {
    .faq-flex {
        flex-direction: column;
    }

    .faq-item-new {
        width: 100%;
    }

    #deep-blue-3, #deep-blue-4 {
        display: none;
    }
}

@media (max-width: 560px) {
    #video-60sec-2 {
        width: 87vw !important;
    }

    .nav-links {
        display: none;
    }

    .why-left h2 {
        font-size: 2rem;
    }

    #demo-ansehen {
        margin-left: 0 !important;
    }
    .unten-title {
        font-size: 28px;
    }

}

@media (min-width: 560px) {
    #anmeldung-mobile {
        display: none;
    }
}


#video-60sec-2 {
    width: 31rem;
}

#demo-ansehen {
    font-weight: bolder;
    margin-left: 2rem;
    box-shadow: inset 0 0 0 3px #28356d;
    color: #28356d;
    background-color: #f4f0e6;
    border: none;
}
