/* Base Theme */
.bg-cream { background-color: #fcf5eb; }

.rounded-4 { border-radius: 1.5rem !important; }

/* Custom Links */
.btn-link-custom {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.btn-link-custom:hover { text-decoration: underline; }

/* News Card Hover Animation */
.news-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px); /* Lift up effect */
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.1) !important;
}

/* Image Reveal/Float Effect */
.reveal-img {
    transition: 0.5s ease;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.reveal-img:hover { transform: scale(1.02); }


.guide-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.image-placeholder {
    background-color: #e9ecef;
    border-radius: 8px;
    text-align: center;
    padding: 40px;
    margin-bottom: 30px;
    border: 2px dashed #ccc;
}

/* Table of Contents Styling */
.toc-box {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    background-color: #fff;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.toc-title {
    font-weight: bold;
    font-size: 1.1rem;
}

.toc-list {
    list-style: none;
    padding-left: 0;
}

.toc-list ul {
    list-style: none;
    padding-left: 20px;
}

.toc-list li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.toc-list a {
    text-decoration: none;
    color: #555;
}

.toc-list a:hover {
    color: #25d366;
    /* WhatsApp Green */
}