/* 
 * Investment Options Section Styles
 * Specific to "Choose Your Investment Path" section
 */

.investment-options {
    padding: 60px 30px;
    background: linear-gradient(135deg, #171a25, #1d2330, #1f2533);
    position: relative;
}

.investment-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(51, 82, 198, 0.3), transparent);
}

.investment-options .header-section {
    text-align: center;
    margin-bottom: 50px;
}

.investment-options .header-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: "Neuton", serif;
    text-transform: capitalize;
}

.investment-options .header-intro {
    font-size: 15px;
    color: #a0aec0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Investment Option Cards */
.investment-options .options-card {
    background: #1a202c;
    border-radius: 12px;
    padding: 35px 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.investment-options .options-card:hover {
    transform: translateY(-5px);
    border-color: #3352c6;
    box-shadow: 0 8px 25px rgba(51, 82, 198, 0.2);
}

.investment-options .options-card-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #2d3748;
}

.investment-options .options-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: "Neuton", serif;
}

.investment-options .options-card-details {
    margin-bottom: 30px;
}

.investment-options .options-card-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.investment-options .options-card-details ul li {
    font-size: 14px;
    color: #e5e5e5;
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.investment-options .options-card-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3352c6;
    font-weight: 700;
    font-size: 18px;
}

.investment-options .options-card-details .bold-text {
    font-weight: 700;
    color: #ffffff;
}

.investment-options .options-button {
    text-align: center;
}

.investment-options .options-button .btn {
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    background: #3352c6;
    border: 2px solid #3352c6;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.investment-options .options-button .btn:hover {
    background: transparent;
    border-color: #3352c6;
    color: #3352c6;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .investment-options .options-card {
        margin-bottom: 25px;
    }
    
    .investment-options .header-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .investment-options {
        padding: 40px 20px;
    }
    
    .investment-options .header-title {
        font-size: 28px;
    }
    
    .investment-options .options-title {
        font-size: 24px;
    }
    
    .investment-options .options-card {
        padding: 25px 20px;
    }
}