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

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    background-color: #ffffff;
}

.hero-section {
    max-width: none !important;
}
p {
    margin-bottom: 10px !important;
}
/* Typography */
h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
    color: #333 !important;
}

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

h3 {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-top: 32px !important;
    margin-bottom: 16px !important;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

/* Navigation */
nav {
    background-color: #da70d6;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin: 0 !important;
    padding: 0 !important;
}

nav ul::before,
nav ul::after {
    display: none !important;
    content: none !important;
}

nav li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

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

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 16px;
    transition: background-color 0.3s;
    border-radius: 4px;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

.logo-img {
    width: 40px;
    height: 40px;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f0ff 0%, #fff5fd 100%) !important;
    padding: 80px 24px !important;
    margin-bottom: 48px !important;
}

.hero-content h1 {
    color: #333 !important;
    font-size: 52px !important;
    margin-bottom: 24px !important;
}

.hero-content p {
    font-size: 20px !important;
    color: #555 !important;
    margin-bottom: 16px !important;
}

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

/* Conversion Buttons */
.conversion-btn {
    display: inline-block !important;
    background-color: #da70d6 !important;
    color: #ffffff !important;
    padding: 16px 40px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: background-color 0.3s !important;
    white-space: nowrap !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    margin: 24px 0 !important;
}

.conversion-btn:hover {
    background-color: #dda0dd !important;
}

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

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

.toc-btn:hover {
    background-color: #da70d6;
    color: #ffffff;
}

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

/* Cards */
.card {
    background-color: #ffffff;
    border: 2px solid #f0e6f6;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(218, 112, 214, 0.15);
}

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

ul li, ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.7;
}

ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dda0dd;
    font-weight: 700;
    font-size: 24px;
}

ul li::marker {
    display: none !important;
}

ol {
    counter-reset: ol-counter;
}

ol li {
    counter-increment: ol-counter;
}

ol li::before {
    content: counter(ol-counter) '.';
    position: absolute;
    left: 0;
    color: #dda0dd;
    font-weight: 700;
    font-size: 20px;
}

ol li::marker {
    display: none !important;
}

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

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

thead {
    background-color: #da70d6;
}

th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    border-bottom: 2px solid #dda0dd;
}

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

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

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

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

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

/* Footer */
footer {
    background-color: #333;
    color: #ffffff;
    padding: 48px 24px 24px;
    margin-top: 64px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 32px;
}

.footer-section h3 {
    color: #dda0dd !important;
    font-size: 20px !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
}

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

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

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #dda0dd;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #555;
    font-size: 16px;
    color: #999;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
}

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

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

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

    .hero-section {
        padding: 48px 16px !important;
    }

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

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

    section {
        padding: 32px 16px;
    }

    .card {
        padding: 24px;
    }

    nav ul {
        gap: 16px;
    }

    nav a {
        font-size: 16px;
    }

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

    .table-container {
        margin: 24px -16px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

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

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

    p, ul li, ol li, td, th {
        font-size: 16px;
    }

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