/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #4c3627, #2d1e14);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Background Effect */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 80%);
    overflow: hidden;
}

/* Header Box Styling */
.header-box {
    display: flex;
    justify-content: center; 
    align-items: center;    
    height: 80px;       
    background-color: white;    
    border: 1px solid #ccc; 
    border-radius: 12px;
}

.header-box img {
    display: flex;
    justify-content: center;
    align-items: center; 
    max-width: 150px;
    max-height: 150px;
}

/* Container Styling */
.container {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    background: #4c3627;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    animation: slide-in 1.2s ease-in-out;
}

/* Header Styling */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    animation: fade-in 1s ease-in-out;
}

/* Section Styling */
.content {
    padding: 10px;
}

.content h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0 10px;
    color: #ffd700;
    text-transform: uppercase;
}

.content p {
    font-size: 16px;
    margin: 10px 0;
    text-align: justify;
    line-height: 1.8;
    color: #f0e68c;
}

.content ul {
    margin: 20px 0;
    padding-left: 20px;
    text-align: left;
    list-style: disc;
    color: #fff;
}

.content ul li {
    margin: 10px 0;
    font-size: 16px;
    position: relative;
}

.content ul li:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 5px;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

/* Links */
a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #f0e68c;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-in {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header h1 {
        font-size: 28px;
    }

    .content h2 {
        font-size: 20px;
    }

    .content p,
    .content ul li {
        font-size: 14px;
    }
}


.container {
    max-height: 90vh; /* Adjust the height as necessary */
    overflow-y: auto; /* Enable vertical scrolling */
    scrollbar-width: thin; /* For modern browsers, adjust the scrollbar width */
    scrollbar-color: darkgoldenrod darkbrown; /* Optional: For styling the scrollbar */
}

/* For WebKit-based browsers like Chrome, Safari */
.container::-webkit-scrollbar {
    width: 1px; /* Width of the scrollbar */
}

.container::-webkit-scrollbar-thumb {
    background-color: darkgoldenrod; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Round edges of the scrollbar */
}


