/* InvescoGlobal Simple & Clean Landing Page */

/* Basic Card Styles */
.plan-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Simple Section Styles */
#trading-plans {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
}

#level-roi {
    background: #f8f9fa;
    padding: 60px 0;
}

#terms {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
}

#trading-plans .section-title,
#terms .section-title {
    color: #fff;
}

#level-roi .section-title {
    color: #333;
}

/* Simple Grid Layout */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Separators */
#trading-plans {
    position: relative;
}

#trading-plans::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

#level-roi {
    position: relative;
    margin-top: 60px;
}

#level-roi::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 2px;
}

#terms {
    margin-top: 60px;
}

/* Full Width Table Styling */
.roi-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.roi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.roi-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.roi-table th:first-child {
    border-radius: 8px 0 0 0;
}

.roi-table th:last-child {
    border-radius: 0 8px 0 0;
}

.roi-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.roi-table tr:nth-child(even) {
    background: #f8f9fa;
}

.roi-table tr:hover {
    background: #e3f2fd;
    transition: background 0.3s ease;
}

/* ROI Percentage Styling */
.roi-percentage {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.roi-gold { color: #FFD700; }
.roi-silver { color: #C0C0C0; }
.roi-bronze { color: #CD7F32; }
.roi-blue { color: #2196F3; }
.roi-purple { color: #9C27B0; }
.roi-green { color: #4CAF50; }
.roi-orange { color: #FF9800; }

/* Simple Responsive */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .plan-card {
        padding: 25px;
        margin: 15px 0;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


