/* Global styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #0d1f33;
}

/* Container for responsive layout */
.container {
    width: 85%;
    margin: 0 auto;
}

/* Header Section */
.header {
    padding: 20px 0;
    background-color: #0d1f33;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.help-center {
    margin-left: 10px;
    font-size: 18px;
}

.header-right {
    display: flex;
    align-items: center;
}

.dashboard-link {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-selector span {
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background-color: white;
    padding: 40px 0;
    text-align: center;
    color: #0d1f33;
}

.breadcrumb {
    text-align: left;
    margin-bottom: 10px;
    color: #666;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.title {
    font-size: 32px;
    margin-bottom: 5px;
}

.hero p {
    color: #666;
    font-size: 14px;
}

/* Content Section */
.content {
    padding: 40px 0;
    background-color: #fff;
}

.content h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.article-list {
    background-color: #f1f3f5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.article:last-child {
    border-bottom: none;
}

.article a {
    color: #007bff;
    text-decoration: none;
    font-size: 18px;
}

.article a:hover {
    text-decoration: underline;
}













/* Global Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #0d1f33;
}

/* Container Styling */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Section Headers */
h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

/* Article List */
.article-list {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Individual Article Styling */
.article {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.article:last-child {
    border-bottom: none;
}

/* Links Styling */
.article a {
    color: #007bff;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Arrow Icon Styling for Links */
.article a::after {
    content: '\003E'; /* Unicode for right arrow (>) */
    color: #0d0d0e;
    font-weight: bold;
}

.article a:hover::after {
    color: #040404;
}





/* Footer Styling */
.footer {
    background-color: #404751; /* Dark grey background */
    padding: 20px 0;
    text-align: center; /* Center the logo */
}

.footer-logo img {
    width: 150px; /* Adjust the width of the logo as needed */
}

.container {
    width: 85%;
    margin: 0 auto;
}
