:root {
    --primary-color: #003366;
    --secondary-color: #0056b3;
    --accent-color: #ffcc00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f9;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s;
}
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.85)), url('https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: left;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* Ticker Slider */
.ticker-wrapper {
    overflow: hidden;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 12px 0;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 30px;
    font-size: 0.95rem;
    color: #444;
}

.ticker-item .rate {
    color: #28a745;
    font-weight: 700;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

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

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.feature-card {
    border: none;
    border-radius: 12px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Table */
.comparison-table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

/* Footer Fix */
footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

footer h5 {
    color: #ffffff;
    font-weight: 700;
}

footer .text-muted {
    color: #b0b0b0 !important;
}

footer a.text-muted:hover {
    color: #ffffff !important;
}

footer hr {
    border-color: #333;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
