/* Basic styling for the page */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
    user-select: none; /* Disable text selection */
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

header {
    background-color: #34495e; /* Dark grey color */
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; /* Centered header content */
    position: relative; /* Ensure footer is positioned correctly */
    margin-bottom: 20px; /* Space between header and content */
}

.header-logo {
    height: 100px; /* Adjust the size as needed */
    margin-right: 20px; /* Space between logo and text */
}

.header-title {
    margin: 0;
    font-size: 3rem; /* Larger font size for prominence */
    font-weight: bold; /* Bold text */
    color: #fff; /* White color */
    text-transform: uppercase; /* Uppercase text for emphasis */
    letter-spacing: 1px; /* Add some spacing between letters */
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px; /* Adjust padding for header and footer */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
    counter-reset: item; /* Reset the counter */
}

li {
    background-color: #ecf0f1;
    margin: 15px 0;
    padding: 20px 20px 20px 50px; /* Space for number and content */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    font-size: 0.9rem; /* Smaller font size for brevity */
    line-height: 1.4;
    overflow: hidden; /* Ensure content stays within box */
}

li::before {
    content: counter(item) '.';
    counter-increment: item;
    position: absolute;
    left: 15px; /* Position the number inside the box */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db; /* Unique color for numbering */
    width: 30px; /* Adjust size of the number circle */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow to make it stand out */
}

footer {
    background-color: #34495e;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: relative; /* Changed from fixed to relative */
    bottom: 0;
    left: 0;
}

.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    opacity: 0.1; /* Light grey color with reduced opacity */
    font-size: 6rem;
    color: #d3d3d3; /* Light grey color */
    pointer-events: none;
    z-index: 9999; /* Ensure watermark is in front */
    text-align: center;
    user-select: none; /* Disable text selection for watermark */
    white-space: nowrap;
}
/* WhatsApp Vertical Ribbon Styles */
.whatsapp-ribbon {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #25D366; /* WhatsApp green color */
    padding: 10px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-ribbon:hover {
    transform: translateY(-50%) scale(1.05); /* Slightly enlarge on hover */
}

.whatsapp-ribbon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.whatsapp-logo {
    width: 32px;
    height: 32px;
    margin-bottom: 10px; /* Space between the logo and text */
}

.whatsapp-ribbon span {
    font-size: 14px;
    color: white;
    font-weight: bold;
    writing-mode: vertical-rl; /* Makes the text vertical */
    text-orientation: mixed; /* Ensures the characters are upright */
    line-height: 1.2;
    transform: rotate(180deg); /* Rotates the text to display correctly */
    text-align: center;
    white-space: nowrap;
}
