/* Global Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #0d1f33;
}

.container {
    width: 85%;
    margin: 0 auto;
}

/* Header Section */
.header {
    background-color: #0d1f33;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    width: 150px; /* Adjust logo size as needed */
}

.help-center {
    color: white;
    margin-left: 10px;
    font-size: 18px;
}

.header-links {
    display: flex;
    align-items: center;
}

.dashboard-link {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-size: 16px;
}

.language-selector {
    display: flex;
    align-items: center;
    color: white;
}

.language-selector span {
    margin-left: 5px;
}

.dropdown-icon {
    font-size: 12px;
}

/* Search Bar Section */
.search-section {
    background-color: #10243F; /* Dark background for the search section */
    padding: 30px 0;
}

.search-bar {
    width: 100%;
    max-width: 800px;
    padding: 15px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    background-color: #2E4156; /* Darker color for input background */
    color: white;
    text-indent: 10px;
}

.search-bar::placeholder {
    color: #8c9cb3;
}





/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content Section */
.container {
    display: flex;
    justify-content: space-between;
}

.main-content {
    width: 70%;
}

.main-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.updated-info {
    color: #666;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.main-content a {
    color: #007bff;
    text-decoration: none;
}

.main-content a:hover {
    text-decoration: underline;
}

/* Sidebar Section */
.sidebar {
    width: 25%;
    background-color: #f8f9fa;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 15px;
}

.sidebar ul li a {
    color: #007bff;
    text-decoration: none;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}









/* Container for the new section */
.new-section {
    margin: 20px 0;
    text-align: left;
}

/* Styling for links */
.blue-link {
    color: #4a58e4;
    text-decoration: none;
    font-size: 18px;
}

.blue-link:hover {
    text-decoration: underline;
}

/* Separator line */
.separator {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

/* Container for the Related Articles Section */
.related-articles-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px 0;
}

/* Title */
.related-articles-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* List Styling */
.related-articles-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.related-articles-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-articles-list li:last-child {
    border-bottom: none;
}

/* Link Styling */
.related-articles-list a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.related-articles-list a:hover {
    text-decoration: underline;
    color: #4a58e4;
}

/* Arrow Icon */
.related-articles-list li::after {
    content: '>';
    color: #4a58e4;
}

/* Footer Section Styling */
.footer {
    background-color: #3b434d; /* Dark background color */
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #e0e0e0;
    letter-spacing: 2px;
}

.footer-logo::before {
    content: '⚪ '; /* Optional logo-like symbol */
    font-size: 14px;
}
