
/*** T3SB identifier: t3sbsCSSassets_30098 */

/* t3sbs_assets_30098 */
.jumbotron{
  position:relative;
}
.jumbotron section div {
  z-index: 1;
  position: relative;
}
.jumbotron::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #020024 0%, #090979 35%, rgba(0, 212, 255, 0) 100%);

}
	


/*** T3SB identifier: t3sbsCSSassets_30516 */

/* t3sbs_assets_30516 */
   .intro-box {
            background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
     
       
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
  /* Highlight Box */
        .highlight-box {
            background: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 25px;
          margin-bottom: 4.5rem;
           
            border-radius: 5px;
           color: #856404;
        }
        /* Investment Cards */
        .investment-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin: 40px 0;
        }

        .investment-card {
            background: white;
            border-left: 5px solid #063289;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .investment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .investment-card h3 {
            color: #063289;
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .investment-card .price {
            background: #e8f4ff;
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            color: #063289;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* Lists */
        .checkmark-list {
            list-style: none;
            margin: 20px 0;
        }

        .checkmark-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.05rem;
        }

        .checkmark-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* Tables */
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-radius: 10px;
            overflow: hidden;
        }

        .price-table thead {
            background: #063289;
            color: white;
        }

        .price-table th {
            padding: 18px;
            text-align: left;
            font-size: 1.05rem;
        }

        .price-table td {
            padding: 15px 18px;
            border-bottom: 1px solid #e9ecef;
        }

        .price-table tbody tr:last-child td {
            border-bottom: none;
            font-weight: bold;
            background: #f8f9fa;
        }

        .price-table tbody tr:hover {
            background: #f8f9fa;
        }


        /* Example Box */
        .example-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
        }

        .example-box h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .example-box .stat {
            background: rgba(255,255,255,0.15);
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            backdrop-filter: blur(10px);
        }

        .example-box .stat strong {
            font-size: 1.3rem;
            display: block;
            margin-bottom: 5px;
        }

        /* ROI Box */
        .roi-box {
            background: #28a745;
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }

        .roi-box .roi-number {
            font-size: 3rem;
            font-weight: bold;
            margin: 15px 0;
        }

        /* Package Cards */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .package-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .package-card.featured {
            border: 3px solid #ff6b35;
            transform: scale(1.05);
        }

        .package-card.featured::before {
            content: "EMPFOHLEN";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b35;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .package-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .package-title {
            color: #2c5aa0;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .package-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c5aa0;
            margin: 15px 0;
        }

        .package-subtitle {
            color: #666;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .package-features {
            list-style: none;
            text-align: left;
            margin: 25px 0;
        }

        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.95rem;
        }

        .package-features li:before {
            content: "✓ ";
            color: #28a745;
            font-weight: bold;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-monthly {
            background: #e8f4ff;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            font-weight: bold;
            color: #2c5aa0;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #114f20 0%, #1e293b 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .cta-feature {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
.cta-feature h4{
  font-size: 1.5rem;
}

        /* Quote Box */
        .quote-box {
            background: #f8f9fa;
            border-left: 5px solid #2c5aa0;
            padding: 30px;
            margin: 30px 0;
            font-style: italic;
            font-size: 1.2rem;
            border-radius: 5px;
        }

        /* Contact Info */
        .contact-info {
            background: white;
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
            text-align: center;
        }

        .contact-info h3 {
           color: #1a1c11;
            margin-bottom: 20px;
        }

        .contact-detail {
            font-size: 1.1rem;
            margin: 10px 0;
        }

        .contact-detail a {
         
            text-decoration: none;
            font-weight: bold;
        }

        .contact-detail a:hover {
            text-decoration: underline;
        }

	

