/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    height: 100%;
    font-family: "Inter", sans-serif;
    background-image: url("../img/bg-2.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}
.text-center {
    text-align: center !important;
}
.text-strong {
    font-weight: bold !important;
}
.no-border {
    border: none;
}

/* Content */
#app {
    /*max-width: 1200px;
    margin: 0 auto;*/
}

/* Hero */
.hero-section {
    text-align: center;
    background-color: #fff;
    padding: 20px 0 50px;
    margin-top: 30px;
}
.hero-title {
    padding: 40px 20px;
}
a.cta {
    font-size: 1.2rem;
    color: #fff;
    background-color: #FF9933;   /*   #0087f6 */
    padding: 15px 30px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 30px;
    transition: all 0.2s linear;
}
a.cta:hover,
a.cta:focus {
    text-decoration: none;
    background-color: #279B48;
}

/* Benefits */
.benefits-section {
    padding: 20px 0;
}

.benefits-item {
    background: #fff;
    padding: 24px 24px 24px 40px;
    height: 100%;
    position: relative;
}
.benefits-item h4 {
    color: #0087f6; 
}
.benefits-item h4 span {
    color: #279B48;
    position: absolute;
    left: 15px;
}

/* Calculator */
.calculator-section {
    background: #fff;
    padding: 30px;
}
.calculator-section h3 {
    color: #666;
}
.calculator-section h3 span {
    color: #0087f6;
}


/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    color: #fff;
    background-color: #0087f6;
}

.title-td {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #666;
    position: relative;
}
.col-title {
    width: 260px;
}

.col-cont {
    width: 180px;
}

input {
    width: 100%;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.total-row {
    font-weight: bold;
    background-color: #f0f0f0;
} 

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.icon-container {
    display: flex;
    gap: 10px; /* Abstand zwischen den Icons */
    flex-wrap: wrap; /* Falls zu viele Icons vorhanden sind, in die nächste Zeile umbrechen */
}

.icon-container div {
    display: inline-block; /* Jedes SVG-Icon bleibt als Blockelement */
}

.anzahl-input {
    width: 60px;
}

.btns-video {
    position: absolute;
    right: 0;
    top: 3px;
}
.btns-video a {
    padding-right: 10px;
}
.btns-video a .play-icon-color {
    fill: #38A1F7;
    transition: 0.2s all;
}
.btns-video a .play-icon-color.viewed {
    fill: #999;
    transition: 0.2s all;
}
.btns-video a:hover .play-icon-color,
.btns-video a:hover .play-icon-color.viewed {
    fill: #0087f6;
}

.menu-icon {
    padding-right: 5px;
}

.menu-icon svg {
    height: 16px;
    width: auto;
}

.menu-icon .menu-icon-color {
    fill: #fff;
    transition: 0.2s all;
}

#sidebar ul li a:hover .menu-icon .menu-icon-color {
    fill: #0087f6;
}



/* Right align number inputs */
td input[type="number"] {
    text-align: right;
}

/* Right align cells with numbers */
td:nth-child(2),
td:nth-child(3),
td:nth-child(4),
td:nth-child(5) {
    text-align: right;
}
.responsive-image {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    width: auto;
}


.responsive-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.video-controls {
   display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

        /* Stil für das Popup-Fenster */
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 20px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            z-index: 1000;
            width: 300px;
            text-align: center;
        }

        /* Hintergrundüberlagerung */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        /* Schließen-Icon */
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
        }

/* CTA section */
.cta-section {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: #eee;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.primary-button {
    background: #0087f6;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.secondary-button {
    background: white;
    color: #0087f6;
    padding: 1rem 2rem;
    border: 1px solid #0087f6;
    border-radius: 6px;
    cursor: pointer;
}

.trust-signals {
    color: #eee;
    text-align: center;
    background: #0167bb;
    padding: 3rem 2rem 1rem;
}

.testimonial {
    position: relative;
    padding: 2rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;  /* This controls how wide the border line is */
    height: 1px;
    background-color: #ddd;  /* Light gray color for the border */
}

/* Media queries */
@media (max-width: 991px) {
    .hero-section {
        padding-bottom: 0;
    }
    .benefits-item {
        margin-bottom: 10px;
        height: auto;
    }
}