/* ./css/help.css */

/* Main container for the help page content */
.help-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* General styling for each section on the page */
.help-section {
    background-color: #cffcf3;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
    margin-bottom: 30px;
}

/* Styling for section headings */
.help-section h3 {
    font-size: 1.8rem;
    color: #055f46; /* Color from your navigation theme */
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

/* Special styling for the "User Manual" placeholder */
#manual-section {
    text-align: center;
    background-color: #cffcf3; /* Light green theme color */
}
#manual-section p {
    font-size: 1.2rem;
    color: #003300;
    font-weight: bold;
}
#manual-section .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

/* Special styling for the "Disclaimer" section */
#disclaimer-section p {
    font-style: italic;
    color: #002d72;
    line-height: 1.7;
    border-left: 3px solid #05668d; /* Accent color from your theme */
    padding-left: 20px;
}

/* A flex container for the tools and counters */
.tools-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

/* A box for each individual tool/counter */
.tool-box {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #9fdbca;
    flex-grow: 1;
    min-width: 250px;
}
.tool-box h4 {
    margin-top: 0;
}

/* Styling for the "View Feedbacks" button */
.help-button {
    display: inline-block;
    background-color: #055f46;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.help-button:hover {
    background-color: #044a36;
}

/* Proper styling for the SmallCounter element */
#smallcounter-box {
    font-family: Arial, sans-serif;
}
#smallcounter-box img {
    border: none;
}
#smallcounter-box a {
    font-size: 0.7rem;
    color: #999;
    text-decoration: none;
}