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

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
}

/* Navigation Menu */
.navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0 !important;
    height: 80px !important;
}

.nav-item {
    margin-bottom: 0 !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #8b5cf6 !important;
}

.navbar-brand img {
    width: 40px;
    height: auto;
}

.navbar-nav {
    list-style: none !important;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 17px;
    padding: 8px 16px !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    display: none !important;
}

.navbar-nav .nav-link:hover {
    color: #8b5cf6 !important;
}

.btn-cta-nav {
    background-color: transparent !important;
    border: 2px solid #8b5cf6 !important;
    color: #8b5cf6 !important;
    font-weight: 600 !important;
    padding: 8px 24px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    transition: all 0.3s !important;
}

.btn-cta-nav:hover {
    background-color: #8b5cf6 !important;
    color: #fff !important;
}

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

.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(255, 255, 255, 0.92) !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    max-width: 900px !important;
}

.hero-section h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
}

.hero-section p {
    font-size: 20px !important;
    color: #333 !important;
    margin-bottom: 32px !important;
    line-height: 1.6 !important;
}

.btn-hero {
    background-color: transparent !important;
    border: 2px solid #8b5cf6 !important;
    color: #8b5cf6 !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    padding: 14px 40px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    transition: all 0.3s !important;
    display: inline-block !important;
}

.btn-hero:hover {
    background-color: #8b5cf6 !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Table of Contents */
.toc {
    background-color: #fff;
    border: 2px solid #8b5cf6;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.toc h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px !important;
}

.toc ul {
    list-style: none !important;
    padding-left: 0 !important;
}

.toc ul li {
    margin-bottom: 12px;
}

.toc ul li::before {
    display: none !important;
}

.toc a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.toc a:hover {
    color: #8b5cf6;
}

/* Sections */
section {
    margin-bottom: 60px;
}

.section-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Headers */
h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
}

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

h3 {
    font-size: 26px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-top: 30px !important;
    margin-bottom: 18px !important;
    line-height: 1.4 !important;
}

/* Paragraphs */
p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Lists */
ul, ol {
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}

ul li, ol li {
    font-size: 18px;
    color: #333;
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 8px !important;
    width: 10px !important;
    height: 10px !important;
    background-color: #8b5cf6 !important;
    border-radius: 50% !important;
}

ol {
    counter-reset: item;
}

ol li::before {
    content: counter(item) ". " !important;
    counter-increment: item !important;
    position: absolute !important;
    left: 0 !important;
    color: #8b5cf6 !important;
    font-weight: 600 !important;
}

/* Remove markers from navbar and footer */
.navbar ul,
.navbar ul li,
footer ul,
footer ul li {
    list-style: none !important;
}

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

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

picture {
    display: block;
    margin: 30px 0;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: #8b5cf6;
    color: #fff;
}

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

tbody td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 17px;
    color: #333;
}

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

tbody tr:last-child td {
    border-bottom: none;
}

/* Cards */
.card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    padding: 30px;
}

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

/* Conversion Buttons */
.btn-conversion {
    background-color: transparent !important;
    border: 2px solid #8b5cf6 !important;
    color: #8b5cf6 !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    padding: 12px 32px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    transition: all 0.3s !important;
    display: inline-block !important;
    text-decoration: none !important;
    margin: 20px 0 !important;
}

.btn-conversion:hover {
    background-color: #8b5cf6 !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: #fff !important;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
}

footer ul li {
    margin-bottom: 12px;
    padding-left: 0 !important;
}

footer ul li::before {
    display: none !important;
    content: none !important;
}

footer a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s;
}

footer a:hover {
    color: #8b5cf6;
}

.footer-copyright {
    border-top: 1px solid #374151;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px !important;
    }

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

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

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

    .section-content {
        padding: 24px;
    }

    .navbar-brand {
        font-size: 20px !important;
    }

    .navbar-brand img {
        width: 32px;
    }
}

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

    .hero-section {
        min-height: 400px !important;
        padding: 60px 15px !important;
    }

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

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

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

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

    p, ul li, ol li {
        font-size: 17px;
    }

    .section-content {
        padding: 20px;
    }

    .btn-hero,
    .btn-conversion {
        font-size: 17px !important;
        padding: 12px 28px !important;
    }

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

/* Ensure proper spacing */
.container {
    max-width: 1200px;
}

/* Material Icons */
.material-icons {
    color: #8b5cf6;
    vertical-align: middle;
    font-size: 24px;
}
