body {
    font-family: "Comic Neue", cursive;
    margin: 0;
    padding: 0;
}
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-section .logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.header-section nav a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

.header-section .login a, .header-section .account a {
    color: #ffffff;
    text-decoration: none;
}

.header-section .categories-button a, .header-section .search-bar form button {
    background-color: #EB5B00;
    color: #ffffff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.header-section .search-bar form input {
    padding: 10px;
    border: 1px solid #EB5B00;
    margin-right: 10px;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    border-top: 1px solid #ffffff;
}

.footer-section div {
    flex: 1;
    margin: 0 10px;
}

.footer-section h3 {
    margin-top: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 20px;
}

.footer-section p {
    margin: 10px 0 0;
    text-align: center;
}

.hero-section {
    display: flex;
    margin: 20px;
}

.hero-section .sliding-images {
    flex: 3;
    margin-right: 20px;
    overflow: hidden;
    position: relative;
}

.hero-section .sliding-images img {
    width: 100%;
    animation: slide 10s infinite;
}

.hero-section .category-list {
    flex: 1;
    background-color: #973131;
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.hero-section .category-list h3 {
    margin-top: 0;
    border-bottom: 2px solid #EB5B00;
    padding-bottom: 10px;
}

.hero-section .category-list ul {
    list-style: none;
    padding: 0;
}

.hero-section .category-list ul li {
    margin-bottom: 10px;
}

.hero-section .category-list ul li a {
    color: #ffffff;
    text-decoration: none;
}

.hero-section .category-list ul li a:hover {
    color: #EB5B00;
}

@keyframes slide {
    0% {left: 0;}
    20% {left: -100%;}
    40% {left: -200%;}
    60% {left: -300%;}
    80% {left: -400%;}
    100% {left: 0;}
}

.hot-category, .whats-new, .check-these {
    margin: 20px;
}

.hot-category h2, .whats-new h2, .check-these h2 {
    margin-top: 0;
}

.category-grid, .course-grid {
    display: grid;
    gap: 20px;
}

.hot-category .category-grid {
    grid-template-columns: repeat(10, 1fr);
}

.whats-new .course-grid, .check-these .course-grid {
    grid-template-columns: repeat(3, 1fr);
}

.check-these .course-grid {
    grid-template-columns: repeat(6, 1fr);
}

.course-item {
    border: 1px solid #EB5B00;
    padding: 10px;
    text-align: center;
    background-color: #ffffff;
}

.course-item img {
    width: 100%;
    height: auto;
}

.course-item .price {
    color: #EB5B00;
    font-weight: bold;
}

.view-more, .view-all {
    display: block;
    text-align: center;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #EB5B00;
    color: #ffffff;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.view-more:hover, .view-all:hover {
    background-color: #973131;
}
