body {
    background-color: #121925;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.directory {
    width: 80%;
    margin: 0 auto;
    padding-top: 3vh;
}

.directory-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    justify-content: center;

}

.directory-item {
    background-color: #132839;
    color: #27416a;
    display: block;
    border-radius: 15px;
    padding: 5%;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.directory-item:hover {
    background-color: #2c3b4e;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.directory-item-img {
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
}

.directory-item-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.directory-item-description {
    font-size: 1rem;
    color: #64748B;
    margin-top: 0.5rem;
}
