/* 
 * MT SWIFT Financial Services - Main Stylesheet
 * Version: 1.0.0
 * Date: November 14, 2025
 */

:root {
    --primary: #0a467e;
    --primary-dark: #05294d;
    --primary-light: #2973b0;
    --secondary: #d6a33f;
    --secondary-dark: #b38020;
    --secondary-light: #f3c96a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --success: #198754;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #0dcaf0;
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark-gray);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--dark-gray);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col {
    flex: 1;
    padding: 0 1rem;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1rem;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 1rem;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 1rem;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-6, .col-4, .col-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

.bg-primary {
    background-color: var(--primary);
    color: var(--white);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-white {
    background-color: var(--white);
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 2.5rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.p-5 {
    padding: 2.5rem;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 0.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--medium-gray);
}

.card-body {
    padding: 1.25rem;
}

.card-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--medium-gray);
}

/* Header & Navigation */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.nav-link.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .nav-menu.active {
        height: auto;
        padding: 1rem 0;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.feature-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background-color: var(--medium-gray);
    padding: 5rem 0;
}

.service-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonial {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
    font-size: 0.875rem;
}

.footer-widget h5 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 0.5rem;
}

.footer-widget a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-social {
    display: flex;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 0.75rem;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-light);
    color: var(--white);
    text-decoration: none;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
    color: var(--text-muted);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 0.25rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(10, 70, 126, 0.2);
}

/* KYC Form Specific Styles */
.kyc-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-progress {
    margin-bottom: 2rem;
}

.progress-steps {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.progress-steps::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--medium-gray);
    z-index: 0;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-marker {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--medium-gray);
    margin: 0 auto 0.5rem;
}

.step-marker.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step-marker.completed {
    background-color: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.step-label.active {
    color: var(--primary);
}

.step-label.completed {
    color: var(--success);
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Dashboard Styles */
.dashboard-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

.dashboard-sidebar {
    width: 250px;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-user {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.user-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.user-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin-bottom: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
}

.sidebar-link.active {
    background-color: var(--primary);
    color: var(--white);
}

.sidebar-icon {
    margin-right: 0.75rem;
}

.dashboard-main {
    flex: 1;
    padding: 2rem;
    background-color: var(--light-gray);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.stat-icon.primary {
    background-color: rgba(10, 70, 126, 0.1);
    color: var(--primary);
}

.stat-icon.success {
    background-color: rgba(25, 135, 84, 0.1);
    color: var(--success);
}

.stat-icon.warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

.stat-icon.info {
    background-color: rgba(13, 202, 240, 0.1);
    color: var(--info);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dashboard-table {
    width: 100%;
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.dashboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.dashboard-table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.dashboard-table tr:last-child td {
    border-bottom: none;
}

.dashboard-table tbody tr:hover {
    background-color: var(--light-gray);
}

.table-status {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-approved {
    background-color: rgba(25, 135, 84, 0.1);
    color: var(--success);
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

.status-rejected {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

/* Responsive Dashboard */
@media (max-width: 992px) {
    .dashboard-container {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        position: static;
        height: auto;
    }

    .sidebar-user {
        display: none;
    }
}

/* Admin Panel Specific Styles */
.admin-panel {
    background-color: var(--light-gray);
    min-height: 100vh;
}

.admin-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-title {
    font-weight: 700;
    margin: 0;
}

.admin-container {
    display: flex;
}

.admin-sidebar {
    width: 250px;
    background-color: var(--dark-gray);
    color: var(--white);
    height: calc(100vh - 64px);
    position: sticky;
    top: 64px;
    overflow-y: auto;
}

.admin-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.admin-menu-item {
    margin-bottom: 0.25rem;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.admin-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
}

.admin-menu-link.active {
    background-color: var(--primary);
    color: var(--white);
}

.admin-menu-icon {
    margin-right: 0.75rem;
}

.admin-main {
    flex: 1;
    padding: 2rem;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-page-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.admin-content {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    border-radius: 0.5rem;
    max-width: 600px;
    width: 100%;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--danger);
}

.modal-body {
    padding: 1.25rem;
}

.modal-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    justify-content: flex-end;
}

.modal-footer .btn {
    margin-left: 0.5rem;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
    border-left: 4px solid transparent;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.1);
    border-left-color: var(--success);
    color: var(--success);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-left-color: var(--warning);
    color: var(--warning);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-left-color: var(--danger);
    color: var(--danger);
}

.alert-info {
    background-color: rgba(13, 202, 240, 0.1);
    border-left-color: var(--info);
    color: var(--info);
}

/* Payment Tracking Specific Styles */
.tracking-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tracking-form {
    margin-bottom: 2rem;
}

.tracking-result {
    border-top: 1px solid var(--medium-gray);
    padding-top: 2rem;
}

.tracking-timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    width: 2px;
    background-color: var(--medium-gray);
}

.timeline-event {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary);
    z-index: 1;
}

.timeline-marker.completed {
    background-color: var(--primary);
}

.timeline-content {
    background-color: var(--light-gray);
    border-radius: 0.5rem;
    padding: 1rem;
}

.timeline-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-details {
    font-size: 0.875rem;
}

/* Custom Additions for Banking Services */
.swift-service-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background-color: rgba(10, 70, 126, 0.1);
    color: var(--primary);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.swift-service-badge i {
    margin-right: 0.5rem;
}

.compliance-banner {
    background-color: rgba(25, 135, 84, 0.1);
    border-left: 4px solid var(--success);
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.compliance-banner i {
    font-size: 2rem;
    color: var(--success);
    margin-right: 1rem;
}

.compliance-text {
    flex: 1;
}

.compliance-text h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.compliance-text p {
    margin: 0;
}

.security-features {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.security-feature:last-child {
    margin-bottom: 0;
}

.security-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(10, 70, 126, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.security-content {
    flex: 1;
}

.security-content h5 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.security-content p {
    margin: 0;
    font-size: 0.875rem;
}

.banking-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}