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

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(to bottom, #ECEFF1, #FFB74D);
        color: #333333;
        line-height: 1.8;
        font-size: 16px;
        padding-top: 60px;
        transition: background 0.5s ease;
    }

    a {
        color: #FF9800;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #E65100;
    }

    /* Header and Navigation */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #FFB74D;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

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

    .logo {
        font-size: 1.5em;
        font-weight: bold;
        color: #E65100;
        text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    nav ul li {
        position: relative;
    }

    nav ul li a {
        font-size: 1em;
        padding: 5px 10px;
        border-radius: 5px;
        transition: background 0.3s ease;
    }

    nav ul li a:hover {
        background-color: rgba(230,81,0, 0.2);
    }

    /* Responsive Navigation */
    @media (max-width: 768px) {
        nav ul {
            flex-direction: column;
            position: absolute;
            top: 60px;
            left: -100%;
            width: 100%;
            background-color: #FFB74D;
            transition: left 0.3s ease;
        }

        nav ul.active {
            left: 0;
        }

        .menu-toggle {
            display: block;
            cursor: pointer;
            font-size: 1.5em;
            color: #E65100;
        }
    }

    .menu-toggle {
        display: none;
    }

    /* Section Styles */
    section {
        padding: 60px 0;
        background: linear-gradient(135deg, #ECEFF1, #FFB74D);
        border-bottom: 1px solid #DDD;
    }

    section:nth-child(even) {
        background: linear-gradient(135deg, #FFB74D, #ECEFF1);
    }

    section h2, section h3 {
        color: #E65100;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        animation: fadeIn 1s ease forwards;
        opacity: 0;
    }

    section h2::after, section h3::after {
        content: '';
        width: 50px;
        height: 3px;
        background: #FF9800;
        display: block;
        margin-top: 10px;
        border-radius: 2px;
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    section p {
        margin-bottom: 20px;
        position: relative;
    }

    /* Image Styles */
    img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin: 20px 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 900px;
    }

    img:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    /* Navigation Links */
    .chapter-nav {
        position: fixed;
        top: 60px;
        right: 20px;
        background: rgba(255, 183, 77, 0.9);
        padding: 10px 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .chapter-nav ul {
        list-style: none;
    }

    .chapter-nav ul li {
        margin-bottom: 10px;
    }

    .chapter-nav ul li a {
        color: #333333;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .chapter-nav ul li a:hover {
        color: #FF9800;
    }

    @media (max-width: 768px) {
        .chapter-nav {
            display: none;
        }
    }

    /* Footer */
    footer {
        padding: 20px 0;
        text-align: center;
        background-color: #333333;
        color: #FFFFFF;
    }

    /* Additional Styles */
    .decorative-line {
        height: 2px;
        background: linear-gradient(to right, #FF9800, transparent);
        margin: 40px 0;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #E65100;
        color: #FFFFFF;
        padding: 10px 15px;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .back-to-top:hover {
        background-color: #FF9800;
        transform: scale(1.1);
    }

    .back-to-top a {
        color: #FFFFFF;
        font-size: 1.2em;
        display: block;
    }

    /* Radiant Gradient Overlay for Text */
    .radiant-text {
        position: relative;
        display: inline-block;
    }

    .radiant-text::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255,152,0,0.3) 0%, rgba(255,152,0,0) 70%);
        pointer-events: none;
        border-radius: 5px;
    }

    /* Smooth Scroll */
    html {
        scroll-behavior: smooth;
    }

    /* Image Container for Maximum Size */
    .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
