/*--------------------------------------------------------------
# Investment Plans Section
--------------------------------------------------------------*/
#investment-plans {
    padding: 80px 0;
    background: #f6f8ff;
}

.investment-plans-container {
    margin-top: 40px;
}

.investment-plan-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.investment-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.investment-plan-card.recommended {
    border-color: #00d084;
    box-shadow: 0 10px 40px rgba(0, 208, 132, 0.2);
}

.plan-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-header p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #00d084;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 208, 132, 0.4);
}

.plan-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-amount {
    text-align: center;
    margin-bottom: 25px;
}

.plan-amount .amount-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.plan-amount .amount-value {
    font-size: 36px;
    font-weight: 700;
    color: #0F3E97;
}

.plan-amount .amount-range {
    font-size: 16px;
    font-weight: 500;
    color: #343a40;
}

.plan-metrics {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 25px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.metric-item .metric-value {
    font-size: 22px;
    font-weight: 700;
    color: #00d084;
}

.metric-item .metric-label {
    font-size: 13px;
    color: #6c757d;
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.feature-list i {
    color: #00d084;
    margin-right: 10px;
    font-size: 18px;
}

.plan-footer {
    margin-top: auto;
}

.plan-footer .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

#plansLoader {
    text-align: center;
    padding: 50px 0;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

.section-title {
    text-align: left;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0F3E97;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 16px;
    color: #6c757d;
}

/*--------------------------------------------------------------
# New Sections
--------------------------------------------------------------*/
#stock-market-rates, #methodology, #responsible-investing, #legal-company, #testimonials, #key-markets-info, #crypto-screener, #stock-market-rates-2 {
    padding: 80px 0;
}

.iframe-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

#how-it-works img {
    max-width: 100%;
    border-radius: 15px;
}

.method-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.method-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.method-list li div {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.method-list h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.method-list p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.method-list i {
    color: #00d084;
    margin-right: 10px;
    font-size: 24px;
}

.responsible-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    color: #fff;
    height: 350px;
    background-size: cover;
    background-position: center;
}

.responsible-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.responsible-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.testimonial-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.testimonial-img img {
    width: 100%;
}

.testimonial-box p {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 20px;
}

.testimonial-box h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-box span {
    color: #6c757d;
}

#legal-company img {
    max-width: 100%;
    border-radius: 15px;
}