body {
    background-color: #111827;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(to right, #00b4d8, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: linear-gradient(to right, #00b4d8, #8338ec);
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
    background: linear-gradient(to left, #00b4d8, #8338ec);
    transform: scale(1.1);
}

.navbar-dark {
    background-color: #0b1120 !important;
}

.lead {
    color: #cbd5e1 !important;
}

.card {
    background-color: #1f2937;
    border: none;
    border-radius: 0.5rem;
    padding: 1.5rem;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.card-title {
    background: linear-gradient(to right, #00b4d8, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.25rem;
    font-weight: bold;
}

footer {
    background-color: #0b1120;
    padding: 1rem 0;
    text-align: center;
    color: #cbd5e1;
}

.about-text {
    max-width: 800px;
    margin: 2rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.team {
    margin-top: 3rem;
}

.team .member {
    margin-bottom: 2rem;
}

.member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #00b4d8;
}

.member-name {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
}

.member-role {
    color: #cbd5e1;
}