        /* Investment Options Section */
        .investment-options-section {
            background-image: linear-gradient(0deg, rgba(27, 68, 75, 0.8), rgba(27, 68, 75, 0.6)), url('../assets/investmentoptions.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding: 6rem 0;
            color: #ffffff;
        }

        .investment-options-section .section-title {
            color: #ffffff !important;
        }

        .investment-options-section .section-subtitle {
            color: rgba(255, 255, 255, 0.9) !important;
        }

        /* Plus One Info Section */
        .plus-one-info {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            max-width: 900px;
            margin: 3rem auto 0;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px dashed rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .plus-one-icon {
            color: #ffffff;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .plus-one-text {
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .plus-one-text strong {
            color: #ffffff;
            font-weight: 600;
        }


        /* New Pricing Grid Styles */
        .pricing-grid-new {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Center 2-column grid for second row */
        .pricing-grid-new:last-of-type {
            grid-template-columns: repeat(2, 1fr);
            max-width: 800px;
            justify-content: center;
        }

        .pricing-card-new {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            position: relative;
 
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            min-height: 600px;
        }

        .pricing-card-new:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .pricing-card-new.featured-new {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .pricing-card-new.featured-new:hover {
            transform: scale(1.02) translateY(-4px);
        }

        /* Reusable Ribbon Badge */
        .ribbon-badge {
            position: absolute;
            top: -10px;
            left: 20px;
            width: 80px;
            height: 120px;
            background: #550040;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10;
            clip-path: polygon(52% 76%, 1% 99%, 0% 0%, 100% 0%, 100% 98%);
            box-shadow: 0 4px 12px rgba(107, 44, 145, 0.3);
        }

        .ribbon-badge .ribbon-title {
            font-family: 'Times New Roman', serif;
            font-size: 16px;
            font-weight: 600;
            line-height: 1;
            margin-bottom: 2px;
        }

        .ribbon-badge .ribbon-subtitle {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 1.1;
            letter-spacing: 0.3px;
            text-align: center;
        }

        /* Legacy Package Ribbons - Keep for backward compatibility */
        .package-ribbon {
            position: absolute;
            top: 0;
            left: 0;
            width: 80px;
            height: 100px;
            background: #6b2c91;
            z-index: 10;
            overflow: hidden;
        }

        .package-ribbon::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 0;
            border-left: 40px solid #550040;
            border-right: 40px solid #550040;
            border-bottom: 15px solid transparent;
        }

        .imagine-ribbon {
            background: #550040;
        }

        .ribbon-content {
            padding: 12px 8px 8px 8px;
            height: 85px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .eleve-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .eleve-text {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Times New Roman', serif;
            line-height: 1;
            margin-bottom: 2px;
        }

        .package-text {
            color: #ffffff;
            font-size: 8px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 1.1;
            letter-spacing: 0.3px;
        }

        /* Best Deal Badge */
        .best-deal-badge {
            position: absolute;
            top: -50px;
            left: -60px;
            width: 150px;
            height: 170px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 99999;
            color: #ffffff;
        }

        .best-deal-badge.right {
            left: auto;
            right: -60px;
        }

        .best-deal-badge::before,
        .best-deal-badge::after {
            content: "";
            position: absolute;
            width: 0;
            height: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .best-deal-badge::before {
            top: 10px;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-bottom: 87px solid #550040;
        }

        .best-deal-badge::after {
            top: 40px;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-top: 87px solid #550040;
        }

        .best-deal-badge .badge-main-text {
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 2px;
            position: relative;
            z-index: 1;
            margin-top: -35px;
        }

        .best-deal-badge .badge-sub-text {
            font-size: 10px;
            font-weight: 400;
            line-height: 1;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        /* Generic Star of David Badge - without absolute positioning */
        .generic-david-badge {
            position: relative;
            width: 150px;
            height: 170px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 99999;
            color: #ffffff;
        }

        .generic-david-badge::before,
        .generic-david-badge::after {
            content: "";
            position: absolute;
            width: 0;
            height: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .generic-david-badge::before {
            top: 10px;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-bottom: 87px solid #550040;
        }

        .generic-david-badge::after {
            top: 40px;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-top: 87px solid #550040;
        }

        .generic-david-badge .badge-main-text {
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 2px;
            position: relative;
            z-index: 1;
            margin-top: -35px;
        }

        .generic-david-badge .badge-sub-text {
            font-size: 10px;
            font-weight: 400;
            line-height: 1;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        /* User Icons */
        .user-icon {
            position: static;
            width: 60px;
            height: 60px;
            background: #EEEEEE;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            color: #888888;
            margin: 40px auto 5px auto;
        }

        .featured-new .user-icon {
            margin: 40px auto 5px auto;
        }

        /* Room label pill under icon */
        .room-label {
            display: inline-block;
            background: #1B444B;
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 24px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            margin: 6px auto 0 auto;
            text-align: center;
        }

        .room-label.share {
            background: #345e66;
        }

        /* Card Body */
        .card-body {
            padding: 40px 24px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .featured-new .card-body {
            padding-top: 50px;
        }

        /* Price Section */
        .price-section {
            text-align: center;
            margin-bottom: 32px;
        }

        .main-price {
            font-size: 48px;
            font-weight: 400;
            color: #333333;
            line-height: 1;
            margin-bottom: 8px;
            font-family: 'Simonetta', serif;
        }

        .price-subtext {
            font-size: 16px;
            color: #666666;
            margin-bottom: 4px;
            font-weight: 400;
            font-family: 'Simonetta', serif;
        }

        .installment-info {
            font-size: 14px;
            color: #666666;
            margin-bottom: 4px;
            font-weight: 400;
            font-family: 'Simonetta', serif;
        }

        .tax-info {
            font-size: 12px;
            color: #999999;
            font-weight: 400;
            font-family: 'Simonetta', serif;
        }

        /* Features List */
        .features-list-new {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
            flex: 1;
        }

        .features-list-new li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            font-size: 14px;
            line-height: 1.5;
            color: #4a4a4a;
        }

        .features-list-new li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #6b2c91;
            font-weight: 600;
            font-size: 16px;
        }

        /* Plus-One Section */
        .plus-one-section {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 24px;
            font-size: 13px;
            color: #4a4a4a;
            line-height: 1.4;
        }

        .plus-icon {
            background: #EEEEEE;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #888888;
        }

        .plus-text {
            flex: 1;
        }

        .plus-text > div:first-child {
            font-weight: 500;
            margin-bottom: 2px;
        }

        .plus-tax {
            font-size: 11px;
            color: #666666;
        }

        .installment-text {
            text-align: center;
            margin: 20px 0;
        }

        .installment-text p {
            font-size: 14px;
            font-weight: 600;
            color: #333333;
            margin: 0;
            line-height: 1.4;
        }

        /* Customized Experience Section */
        .customized-experience-section {
            margin-top: 0rem;
            display: flex;
            justify-content: center;
        }

        .customized-card {
            position: relative;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            padding: 30px 40px;
            max-width: 1000px;
            width: 100%;
            border: 2px solid #f0f0f0;
            display: grid;
            grid-template-columns: auto 1fr 1fr auto;
            gap: 30px;
            align-items: center;
        }

        .customized-content {
            display: contents;
        }

        .customized-title-section {
            text-align: left;
        }

        .customized-title {
            font-size: 24px;
            font-weight: 600;
            color: #333333;
            margin-bottom: 8px;
            font-family: 'Simonetta', serif;
        }

        .customized-description {
            font-size: 14px;
            color: #666666;
            margin: 0;
            line-height: 1.5;
        }

        .customized-payment-info {
            text-align: left;
        }

        .customized-payment-info p {
            font-size: 13px;
            font-weight: 600;
            color: #333333;
            margin: 0;
            line-height: 1.4;
        }

        .customized-card .choose-plan-btn-new {
            width: auto;
            padding: 12px 24px;
            white-space: nowrap;
        }

        /* Choose Plan Button */
        .choose-plan-btn-new {
            width: 100%;
            background: #1B444B !important;
            color: #ffffff;
            border: none;
            border-radius: 25px;
            padding: 16px 24px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease;
            letter-spacing: 0.5px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }

        .choose-plan-btn-new:hover {
            background: #112c30 !important;
            text-decoration: none;
        }

        /* Responsive Design for New Pricing */
        @media (max-width: 992px) {
            .pricing-grid-new {
                grid-template-columns: 1fr;
                gap: 2rem;
                max-width: 500px;
            }
            
            .pricing-card-new.featured-new {
                transform: none;
                order: -1;
            }
            
            .pricing-card-new.featured-new:hover {
                transform: translateY(-4px);
            }
        }

        @media (max-width: 768px) {
            .pricing-card-new {
                min-height: auto;
                margin: 0 1rem;
                max-width: calc(100vw - 2rem);
            }
            
            .card-body {
                padding: 32px 20px 20px;
            }
            
            .featured-new .card-body {
                padding-top: 42px;
            }
            
            .main-price {
                font-size: 36px;
            }
            
            .investment-options-section {
                padding: 4rem 1rem;
            }
            
            .pricing-grid-new {
                padding: 0 1rem;
                gap: 1.5rem;
                max-width: 100%;
            }
            
            .pricing-grid-new:last-of-type {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
            
            /* Fix card content overflow */
            .features-list-new {
                font-size: 14px;
                line-height: 1.4;
            }
            
            .plus-one-section {
                padding: 1rem;
                font-size: 14px;
            }
            
            .choose-plan-btn-new {
                padding: 12px 20px;
                font-size: 14px;
            }
        }
