/* =================================================================
   General & Helper Classes
================================================================= */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}


.section-padding {
    padding: 80px 0;
}

.section-bg-light {
    background-color: #f8f9fa;
}

.section-bg-dark {
    background-color: #212529;
    color: #fff;
}

.section-bg-red {
    background-color: #E0144C !important;
    color: #fff;
}

.section-bg-blue {
    background-color: #2251a1 !important;
    color: #fff;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.text-muted-light {
    color: #888;
}

/* =================================================================
   Buttons
================================================================= */
.btn {
    border-radius: 5px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #0b5ed7;
    color: #fff;
}

.btn-red {
    background-color: #E0144C !important;
    color: #fff;
}

.btn-red:hover, .btn-red:focus {
    background-color: #c9304f;
    color: #fff;
    transition: all 0.9s;
    box-shadow: 0 0 40px #ffd900;
    outline: none;
}

.btn-blue {
    background-color: #2251a1 !important;
    color: #fff;
}

.btn-blue:hover, .btn-blue:focus {
    background-color: #183a85;
    color: #fff;
    transition: all 0.9s;
    box-shadow: 0 0 40px #ffd900;
    outline: none;
}


/* =================================================================
   Feature & Icon Styles
================================================================= */
.feature-item {
    padding: 20px;
}

.feature-item .feature-icon {
    font-size: 36px;
    color: #2251a1;
    margin-bottom: 20px;
    display: inline-block;
    background-color: #e7f1ff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.list-icon-check {
    list-style: none;
    padding-left: 0;
}

.list-icon-check li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
}

.list-icon-check li:before {
    content: '\e013'; /* Bootstrap check glyph */
    font-family: 'Glyphicons Halflings';
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background-color: #28a745;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    font-size: 12px;
}


/* =================================================================
   Card Styles (Mission, Team, News, Stats)
================================================================= */
.mission-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    height: 100%;
}

.mission-card .mission-icon {
    font-size: 32px;
    color: #2251a1;
    margin-bottom: 15px;
}

.mission-card h3 {
    font-size: 24px;
}

.team-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}

.team-card .avatar-initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e5385c;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

/* Specific avatar colors */
.avatar-initials.bg-blue { background-color: #0d6efd; }
.avatar-initials.bg-green { background-color: #198754; }
.avatar-initials.bg-pink { background-color: #e5385c; }


.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card p {
    margin-bottom: 0;
}

.news-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}

.news-card img {
    max-height: 30px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.stat-card .stat-number {
    font-size: 52px;
    font-weight: bold;
    color: #2251a1;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.money-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}

.money-card h3 {
    font-size: 22px;
}

.trusted-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.trusted-brand-logo img {
    max-width: 100%;
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trusted-brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =================================================================
   FAQ / Accordion
================================================================= */
.faq-section .panel-group {
    margin-bottom: 0;
}

.faq-section .panel {
    border: none;
    box-shadow: none;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    overflow: hidden; /* For border-radius */
}

.faq-section .panel-heading {
    padding: 0;
    background-color: #fff;
    border: none;
}

.faq-section .panel-heading a {
    display: block;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    position: relative;
}

.faq-section .panel-heading a:after {
    content: '\e259'; /* plus */
    font-family: 'Glyphicons Halflings';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #888;
    transition: all 0.3s ease;
}

.faq-section .panel-heading a[aria-expanded="true"]:after {
    content: '\e260'; /* minus */
    transform: translateY(-50%) rotate(180deg);
}

.faq-section .panel-body {
    padding: 0 25px 25px 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
}