/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1f2937;
    background-color: #ffffff;
}

/* Navigation Menu - CRITICAL: Remove list markers */
.nav-menu li {
    margin-bottom: 0 !important;
    list-style: none !important;
}

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

.nav-menu ul {
    list-style: none !important;
    list-style-type: none !important;
}

/* Footer Links - CRITICAL: Remove list markers */
footer ul {
    list-style: none !important;
    list-style-type: none !important;
}

footer li {
    list-style: none !important;
    list-style-type: none !important;
}

footer li::before,
footer li::after,
footer li::marker {
    display: none !important;
    content: none !important;
}

/* Content Lists Styling */
.content-section ul,
.content-section ol {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.content-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.content-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #d97706;
    font-size: 20px;
    line-height: 1.7;
}

.content-section ol {
    counter-reset: item;
}

.content-section ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    counter-increment: item;
}

.content-section ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #d97706;
    font-weight: 600;
}

/* Headers - CRITICAL: All with !important */
h1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
    color: #1f2937 !important;
}

h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-top: 48px !important;
    margin-bottom: 24px !important;
    color: #1f2937 !important;
}

h3 {
    font-size: 28px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-top: 32px !important;
    margin-bottom: 16px !important;
    color: #374151 !important;
}

p {
    margin-bottom: 18px;
    font-size: 18px;
    color: #4b5563;
}

/* Hero Section - ALL with !important */
.hero-section {
    position: relative !important;
    min-height: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 80px 20px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.85), rgba(88, 28, 135, 0.85)) !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    color: #ffffff !important;
}

.hero-content h1 {
    color: #ffffff !important;
    font-size: 56px !important;
    margin-bottom: 24px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-content p {
    color: #ffffff !important;
    font-size: 20px !important;
    margin-bottom: 32px !important;
    line-height: 1.8 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: #d97706;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #b45309;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #9333ea;
    color: #9333ea;
    padding: 14px 38px;
}

.btn-outline:hover {
    background-color: #9333ea;
    color: #ffffff;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

thead {
    background-color: #9333ea;
    color: #ffffff;
}

th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
}

td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 18px;
}

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

/* Cards */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #d97706;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-img {
    box-shadow: none !important;
}

/* Table of Contents */
.toc {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.toc-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid #9333ea;
    color: #9333ea;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background-color: #9333ea;
    color: #ffffff;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background-color: #f9fafb;
}

/* Logo in Navigation */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #9333ea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 36px !important;
    }

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

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

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

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

    .hero-section {
        min-height: 500px !important;
        padding: 60px 20px !important;
    }

    .btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .toc {
        flex-direction: column;
        align-items: stretch;
    }

    .toc-link {
        text-align: center;
    }

    th, td {
        padding: 12px;
        font-size: 16px;
    }
}
