body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #2E3A47; /* Dark Gray */
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.8em;
}

header p {
    font-size: 1.2em;
}

main {
    padding: 20px;
}

section {
    margin: 20px 0;
}

.ebook-list, .webinar-list, .article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.ebook-item, .webinar-item, .article-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.ebook-item:hover, .webinar-item:hover, .article-item:hover {
    transform: translateY(-5px);
}

h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #4B6F86; /* Teal */
}

p {
    margin-bottom: 15px;
}

.btn {
    background-color: #FFA500; /* Orange */
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #FF8C00; /* Darker Orange */
    transform: scale(1.05);
}

footer {
    background-color: #2E3A47; /* Dark Gray */
    color: #ffffff;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}
