/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container and Layout */
.main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

.main-content {
    flex: 3;
    min-width: 65%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar {
    flex: 1;
    min-width: 30%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

h1 {
    font-size: 2.5em;
    text-align: center;
    color: #444;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    background: -webkit-linear-gradient(#444, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 1.8em;
    text-align: center;
    color: #555;
}

h3 {
    font-size: 1.4em;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Sections */
.section {
    margin-bottom: 30px;
}

.section p {
    margin-bottom: 10px;
}

/* Sidebar Cards */
.sidebar .card {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: box-shadow 0.3s;
}

.sidebar .card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar .card-body {
    padding: 15px;
}

.sidebar .card-body a {
    font-weight: bold;
}

/* Funding Institutions */
.funding-institutions {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.funding-institutions h3 {
    text-align: center;
    margin-bottom: 30px;
}

.funding-institutions img {
    max-width: 150px;
    margin: 10px;
    transition: transform 0.3s;
}

.funding-institutions img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .main-content, .sidebar {
        min-width: 100%;
    }
}
