:root {
    --primary-color: #0F4C81;
    --secondary-color: #E4B363;
    --accent-color: #F5F5F5;
    --dark-color: #333333;
}
.news-tile {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.news-tile:hover {
    transform: translateY(-5px);
}

.main-news {
    padding: 20px;
    background-color: #fff;
}

.secondary-news {
    padding: 15px;
    background-color: #f9f9f9;
}

.news-date {
    color: #6c757d;
    font-size: 0.8rem;
}

.news-title {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.news-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.section-title {
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.category-icon {
    color: #D4AF37;

    /* Gold color for wealth theme */
    transition: transform 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card {
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.category-card:hover {
    border-left: 3px solid #D4AF37;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.portal-header {
    background-color: #1D3557;
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

.section-title {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #1D3557;
}

.header-section {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
}

.pricing-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.premium-header {
    background-color: var(--secondary-color);
}

.pricing-feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-premium {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.info-box {
    background-color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.375rem;
}

.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.custom-table th {
    background-color: var(--primary-color);
    color: white;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}