<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
        font-family: 'Roboto', sans-serif;
         background-color: #ffffff;
        color: #333;
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
       
        background-size: cover; /* Ensures the image covers the entire section */
        background-position: center center; /* Center the image */
        background-repeat: no-repeat; /* Prevents repeating the background image */
        min-height: 100vh; /* Ensure that the background covers at least the full viewport height */
    }

    header {
        background-color: rgba(17, 17, 17, 0.8); /* Dark transparent header background */
        padding: 20px 0;
        z-index: 10;
        position: relative;
    }

    header img {
        max-width: 300px;
    }

    .description {
        font-size: 18px;
        line-height: 1.6;
        color: #000000;
        margin-top: 20px;
       /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);  Adding text shadow for better readability on the background */
    }

    .search-container {
        margin-top: 30px;
    }

    .custom-search-form {
        display: flex;
        align-items: center;
        background-color: rgba(30, 30, 30, 0.8); /* Slight transparency for form background */
        border: 2px solid #007bff;
        border-radius: 25px;
        overflow: hidden;
        width: 60%;
        max-width: 800px;
        margin: 0 auto 30px;
        padding: 10px;
    }

    .custom-search-field {
        border: none;
        padding: 10px;
        background-color: transparent;
        color: #ffffff;
        border-radius: 25px 0 0 25px;
        flex: 1;
        outline: none;
    }

    .custom-search-submit {
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        transition: background 0.3s, transform 0.2s;
    }

    .custom-search-submit img {
        width: 40px;
        height: auto;
        transition: transform 0.2s;
    }

    

    .custom-search-submit:hover img {
        transform: scale(1.2);
    }

    .enter-btn {
        margin-top: 30px;
    }

    .enter-btn img {
        width: 250px;
        max-width: 100%;
        transition: transform 0.3s;
    }

    .enter-btn img:hover {
        transform: scale(1.05);
    }

/* Footer Container */
footer {
    background-color: #111;
    padding: 10px;
    color: #b0b0b0;
    text-align: center;
}

/* Footer layout using Flexbox */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
}

/* Copyright Section */
.footer-copyright {
    width: 45%;  /* 50% width on large screens */
    text-align: left;
    margin-bottom: 20px;
	margin-right: 10px;
}

/* Links Section */
.footer-links {
    width: 45%;  /* 50% width on large screens */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping of link columns */
    margin-top: 10px;
}

/* Each column inside footer-links */
.link-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 30%; /* Each link column takes up 30% of the footer-links width */
    margin-bottom: 20px; /* Space between columns */
}

/* Footer Links */
footer a {
    color: #fff;
    text-decoration: none;
    margin: 5px 0;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 768px) {
    /* Stack the footer content vertically on smaller screens */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    /* Copyright section should be centered on smaller screens */
    .footer-copyright {
        text-align: center;
        margin-bottom: 10px;
        width: 100%; /* Full width on small screens */
    }

    /* Links section should be stacked vertically */
    .footer-links {
        display: block;
        width: 100%; /* Full width on small screens */
        text-align: center;
    }

    /* Each link column will take up full width on small screens */
    .link-column {
        width: 30%; /* Full width on small screens */
        text-align: center; /* Center text for mobile view */
        margin-bottom: 20px; /* Add space between columns */
    }
}

@media (max-width: 480px) {
    /* Extra small screens (phones) */
    .footer-links {
        font-size: 14px; /* Adjust font size for better readability */
    }
}



    @media (max-width: 768px) {
        .custom-search-form {
            width: 80%;
        }
    }

    @media (max-width: 480px) {
        .custom-search-form {
            width: 90%;
        }
        .custom-search-field, .custom-search-submit {
            padding: 8px;
        }
    }
		/* Container for buttons */
.button-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 10px; /* Space between the buttons */
    margin: 20px auto; /* Center the button container */
    max-width: 1000px; /* Limit width */
}

/* Common Button Styles */
.button {
    background-color: #8B0000; /* Dark red button color */
    color: white; /* White text */
    border: 2px solid white; /* White border */
    padding: 12px 20px; /* Padding inside the button */
    text-align: center; /* Center text inside button */
    font-size: 16px; /* Button text size */
    cursor: pointer; /* Change cursor to pointer */
    border-radius: 5px; /* Rounded corners */
    width: 100%; /* Make button take full width on small screens */
    text-decoration: none; /* Remove underline from the &lt;a&gt; inside the button */
}

/* Button hover effect */
.button:hover {
    background-color: #a50000; /* Slightly darker red on hover */
    border-color: #ffffff; /* Ensure border stays white */
}

/* Link inside the button */
.button a {
    color: white;
    text-decoration: none; /* Remove underline from the link */
    display: block; /* Make the link take up the full button area */
}

/* Button width control */
.button1 {
    width: 100%; /* 100% width by default for mobile responsiveness */
}

.button2 {
    width: 100%; /* 100% width for mobile, can be changed for specific buttons */
}

/* For larger screens, buttons will be in one row */
@media (min-width: 768px) {
    .button {
        width: auto; /* Reset to auto width on larger screens */
    }

    .button-container {
        flex-wrap: nowrap; /* Prevent wrapping of buttons */
    }

    /* Adjust button sizes if needed */
    .button {
        width: auto; /* Allow buttons to take their natural size */
    }
}
/* Container for the entire feature block */
.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Space between each feature item */
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual feature item */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%; /* Each item takes up 45% width */
    text-align: center;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #f8f8f8; /* Light background for each feature */
    margin-bottom: 20px; /* Space between rows on smaller screens */
}

/* Image icon above the text */
.feature-icon {
    width: 50px; /* Adjust size as necessary */
    height: auto;
    margin-bottom: 10px; /* Space between icon and text */
}

/* Title styling */
.feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #333; /* Dark text color */
    margin-bottom: 10px; /* Space between title and description */
}

/* Description text */
.feature-description {
    font-size: 14px;
    color: #555; /* Darker description text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-item {
        width: 100%; /* Stack items vertically on smaller screens */
    }
}
		/* Container for the entire article content */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-size: cover;
    background-position: center;
    /* min-height: 100vh; /* Ensures the container takes at least full viewport height */
    color: white; /* Default text color */
}

/* The actual article box */
.article-box {
    background-color: rgba(51, 51, 51, 0.8); /* Darker semi-transparent background for contrast */
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow around the box */
    margin-bottom: 30px; /* Adjust bottom margin */
}

/* Styling for h1 heading */
h1 {
    font-size: 36px;
    font-weight: bold;
    color: #f4f4f4; /* Light greyish white color for h1 */
    margin-bottom: 20px;
}

/* Styling for h2 heading */
h2 {
    font-size: 30px;
    font-weight: bold;
    color: #f4f4f4; /* Light greyish white color for h2 */
    margin-bottom: 18px;
}

/* Styling for h3 heading */
h3 {
    font-size: 24px;
    font-weight: bold;
    color: #f4f4f4; /* Light greyish white color for h3 */
    margin-bottom: 16px;
}

/* Styling for h4 heading */
h4 {
    font-size: 20px;
    font-weight: bold;
    color: #f4f4f4; /* Light greyish white color for h4 */
    margin-bottom: 14px;
}

/* Paragraph styling */
p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-box {
        padding: 20px; /* Less padding on smaller screens */
    }
    
    h1 {
        font-size: 30px; /* Smaller h1 font size on mobile */
    }
    
    h2 {
        font-size: 26px; /* Smaller h2 font size on mobile */
    }

    h3 {
        font-size: 22px; /* Smaller h3 font size on mobile */
    }

    h4 {
        font-size: 18px; /* Smaller h4 font size on mobile */
    }

    p {
        font-size: 14px; /* Slightly smaller text on mobile */
    }
}</pre></body></html>