/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: large;
}

body {
    font-family: Arial, sans-serif;
    background-color: #E6F0FA;
    color: #333;
}

.navbar {
    background-color: #337AB7;
    color: white;
    padding: 1rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.main-content {
    display: grid;
    gap: 2rem;
}


@media (min-width: 768px) {         /* Responsive Design */
    .main-content {
        grid-template-columns: 2fr 1fr;
    }
}

.welcome-box, .info-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
}

.welcome-box h2 {
    color: #337AB7;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.1rem;
    color: #F77F00;
    margin-bottom: 0.5rem;
}

.info-box ul {
    margin-bottom: 0.5rem;
}

.info-box ul li {
    margin: 0.2rem 0;
}

.info-box ul li a {
    color: #337AB7;
    text-decoration: none;
}

.info-box ul li a:hover {
    text-decoration: underline;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-box h3 {
    color: #337AB7;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li a {
    color: #337AB7;
    text-decoration: none;
}

.sidebar-box ul li a:hover {
    text-decoration: underline;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button {
    background-color: #337AB7;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #286090;
}
