body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    /*background: #1f3b73;   Dark blue color  */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
    background-image: url('../images/header_4.webp');
    background-repeat: no-repeat;
    background-size: cover;

}

header h1 {
    margin: 1px;
    padding:5px;
    font-size: 2em;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
    font-weight:900;
    padding:5px;
}

header h1, header p {
    color:white;
    background-color:rgba(0,0,0,0.6);
    border-radius: 10px;

}

nav {
    background: #f4f4f4;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #1f3b73;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px 0;
    
}

main h2 {
    border-bottom: 2px solid #1f3b73; /* Match header color */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.toc {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.toc li {
    margin: 5px 0;
}

.toc li a {
    text-decoration: none;
    color: #1f3b73;
}

.toc li a:hover {
    text-decoration: underline;
}

article {
    margin-bottom: 20px;
}

article h3 {
    margin: 0 0 10px;
    color: #1f3b73; /* Match header color */
}

.review-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.image-container {
    flex: 0 0 150px; /* Fixed width for the image container */
    padding: 10px;
    border-right: 1px solid #eee;
}

.image-container img {
    width: 100%; /* Make the image fill the container */
    border-radius: 8px;
}

.content {
    flex: 1; /* Take up the remaining space */
    padding: 10px;
    text-align: left;
}

.content h3 {
    color: #0073e6; /* Dark blue for headers */
    margin-top: 0;
}



footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer .container {
    width: 100%;
}
