/* ========================================
   GLOBAL TYPOGRAPHY & IMPROVEMENTS
   ======================================== */

/* Modern Font Family */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 17px;
    /* Increased from default */
    line-height: 1.7;
    color: #333;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    /* 48px */
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    /* 40px */
    font-weight: 700;
}

h3 {
    font-size: 2rem;
    /* 32px */
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    /* 24px */
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 600;
}

h6 {
    font-size: 1.125rem;
    /* 18px */
    font-weight: 600;
}

/* Paragraphs & Lead Text */
p {
    margin-bottom: 1.25rem;
    font-size: 17px;
}

.lead {
    font-size: 1.375rem;
    /* 22px */
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive Typography */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2.25rem;
        /* 36px */
    }

    h2 {
        font-size: 1.875rem;
        /* 30px */
    }

    h3 {
        font-size: 1.5rem;
        /* 24px */
    }
}

/* ========================================
   FULL-WIDTH SECTION STYLES
   ======================================== */

section .container {
    max-width: 1630px;
}

.section-full-width {
    width: 100%;
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: #0b2c4e;
    color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: #fff !important;
}

.section-dark p,
.section-dark li {
    color: rgba(255, 255, 255, 0.9);
}

.section-dark .lead {
    color: rgba(255, 255, 255, 0.85);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.bg-white.bg-opacity-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.section-light {
    background: #f8f9fa;
}

.section-white {
    background: #fff;
}

.section-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
}

.section-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 44, 78, 0.85);
    z-index: 1;
}

.section-overlay .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   TABLE IMPROVEMENTS
   ======================================== */

.table-improved {
    border-radius: 8px;
    overflow: hidden;
}

.table-improved tbody tr {
    transition: all 0.3s ease;
}

.table-improved tbody tr:nth-child(odd) {
    background-color: rgba(0, 136, 204, 0.05);
}

.table-improved tbody tr:hover {
    background-color: rgba(0, 136, 204, 0.1);
    transform: scale(1.01);
}

.table-improved thead th {
    border-bottom: 3px solid #0088CC;
}

/* ========================================
   ORIGINAL CUSTOM STYLES BELOW
   ======================================== */