/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Ensure the background covers the entire page */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #F2F2F2; /* 60% Background */
    color: #333; /* Neutral text color for readability */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Navbar Styles */
.navbar {
    background-color: #A41034; /* Dark red */
    color: #fff; /* White text for contrast */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 100%;
    max-height: 65px; /* Optional: Set a maximum height */
    width: auto; /* Maintain aspect ratio */
}

.profile-header {
    display: flex; /* Use flexbox for horizontal alignment */
    align-items: center; /* Vertically align items */
    gap: 15px; /* Add spacing between items */
}

.profile-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-card h2 {
    margin-top: 0;
    color: #004080;
    font-size: 1.5rem;
}

.profile-card p {
    margin: 10px 0;
    line-height: 1.6;
}


header {
    background-color: #f9f9f9; /* Match the body background color */
    text-align: center; /* Center the text horizontally */
    padding: 20px 0; /* Reduce vertical padding */
    position: relative; /* Keep the header in the normal flow */
    margin-top: -20px; /* Move the header higher */
    z-index: 1000; /* Ensure it appears above other elements */
}

header h1 {
    margin: 0; /* Remove any extra margins */
    font-size: 2rem; /* Font size for readability */
    color: #333; /* Neutral text color */
    text-shadow: none; /* Remove shadow for simplicity */
}

h2 {
    margin: 20px 0 10px;
    font-size: 1.8rem;
    color: #333333;
    text-align: left;
}

.container {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #555555;
}

strong {
    font-weight: bold;
    color: #000;
}

.home-link {
    position: absolute;
    top:30px;
    right: 80px;
    color: #ffffff;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: bold;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0);
    padding: 5px 10px;
    border-radius: 4px;
}

.home-link:hover {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.8);
}

