@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: navy;
    --accent-color: royalblue;
    --text-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Clash Display', sans-serif !important;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 18px !important;
}

/* Reset list styles */
ul, ol {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

footer p {
    color:aliceblue !important
}

/* Navigation - NO markers or pseudo elements */
nav ul,
nav ol,
footer ul,
footer ol,
.nav-list,
.footer-list {
    list-style: none !important;
}

nav ul li::before,
nav ol li::before,
nav ul li::after,
nav ol li::after,
footer ul li::before,
footer ol li::before,
footer ul li::after,
footer ol li::after,
.nav-list li::before,
.nav-list li::after,
.footer-list li::before,
.footer-list li::after {
    display: none !important;
    content: none !important;
}

nav ul li::marker,
nav ol li::marker,
footer ul li::marker,
footer ol li::marker,
.nav-list li::marker,
.footer-list li::marker {
    display: none !important;
    content: none !important;
}

/* Content lists with custom markers */
.content ul,
.content ol,
main ul:not(.nav-list):not(.footer-list):not(.outline-buttons),
main ol:not(.nav-list):not(.footer-list):not(.outline-buttons) {
    margin: 20px 0;
    padding-left: 0;
}

.content ul li,
main ul:not(.nav-list):not(.footer-list):not(.outline-buttons) li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    list-style: none !important;
}

.content ul li::marker,
main ul:not(.nav-list):not(.footer-list):not(.outline-buttons) li::marker {
    display: none !important;
}

.content ul li::before,
main ul:not(.nav-list):not(.footer-list):not(.outline-buttons) li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--accent-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.content ol li,
main ol:not(.nav-list):not(.footer-list):not(.outline-buttons) li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    counter-increment: list-counter;
    list-style: none !important;
}

.content ol li::marker,
main ol:not(.nav-list):not(.footer-list):not(.outline-buttons) li::marker {
    display: none !important;
}

.content ol,
main ol:not(.nav-list):not(.footer-list):not(.outline-buttons) {
    counter-reset: list-counter;
}

.content ol li::before,
main ol:not(.nav-list):not(.footer-list):not(.outline-buttons) li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
    font-weight: 600;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section img {
    width: 40px;
    height: 40px;
    box-shadow: none !important;
}

.brand-name {
    color: var(--white);
    font-size: 24px !important;
    font-weight: 700 !important;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.cta-button {
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.cta-button:hover {
    background-color: #4169E1 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%) !important;
    padding: 80px 20px !important;
    color: var(--white) !important;
}

.hero-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
}

.hero-content h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
    color: var(--white) !important;
}

.hero-content p {
    font-size: 20px !important;
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
    color: var(--white) !important;
}

.hero-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content {
    margin-bottom: 60px;
}

section {
    margin-bottom: 60px;
}

/* Typography */
h1 {
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    color: var(--primary-color) !important;
    line-height: 1.3 !important;
}

h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    margin-top: 40px !important;
    color: var(--primary-color) !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
    margin-top: 30px !important;
    color: var(--primary-color) !important;
    line-height: 1.4 !important;
}

p {
    font-size: 18px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    color: var(--text-color) !important;
}

strong {
    font-weight: 600;
    color: var(--primary-color);
}

/* Table of Contents */
.outline-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin: 40px 0 !important;
    list-style: none !important;
}

.outline-buttons li {
    list-style: none !important;
}

.outline-buttons li::before,
.outline-buttons li::after,
.outline-buttons li::marker {
    display: none !important;
    content: none !important;
}

.outline-buttons a {
    display: inline-block !important;
    padding: 12px 24px !important;
    border: 2px solid var(--accent-color) !important;
    border-radius: 50px !important;
    color: var(--accent-color) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.outline-buttons a:hover {
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
}

.card h3 {
    margin-top: 0 !important;
}

/* Images */
picture {
    display: block;
    margin: 30px 0;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    min-width: 600px;
}

thead {
    background-color: var(--primary-color);
}

thead tr th {
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 16px !important;
    text-align: left !important;
    font-size: 18px !important;
}

tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

tbody tr:hover {
    background-color: #f8f9fa;
}

tbody tr td {
    padding: 16px !important;
    font-size: 17px !important;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: var(--white) !important;
}

.footer-section ul {
    list-style: none !important;
}

.footer-section ul li {
    margin-bottom: 12px;
    list-style: none !important;
}

.footer-section ul li::before,
.footer-section ul li::after,
.footer-section ul li::marker {
    display: none !important;
    content: none !important;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

/* Bootstrap Icons */
.icon {
    color: var(--accent-color);
    font-size: 24px;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr !important;
    }

    .hero-content h1 {
        font-size: 36px !important;
    }

    .hero-content p {
        font-size: 18px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 17px !important;
    }

    .hero {
        padding: 50px 20px !important;
    }

    .hero-content h1 {
        font-size: 30px !important;
    }

    .hero-content p {
        font-size: 17px !important;
    }

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    p {
        font-size: 17px !important;
    }

    .card {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
