body {
    background-color: #28367D; /* koyu mavi ana zemin */
    margin-top: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
}

.navbar {
    background-color: #1A9DD8; /* açık mavi navbar */
    padding: 10px 20px;
}

.navbar .navbar-text img {
    height: 60px;
    width: 130px;
}

.navbar .languages {
    color: white;
}

.navbar .languages i {
    padding-left: 30px;
}

.card {
    border: none;
    background-color: rgba(26, 157, 216, 0.15); /* açık mavi hafif şeffaf kart arka planı */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(26, 157, 216, 0.3);
    margin-bottom: 20px;
}

.card-title {
    margin: 0;
    background-color: rgba(26, 157, 216, 0.8); /* daha parlak başlık arka planı */
    width: 100%;
    text-align: center;
    height: 20%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight: 600;
    font-size: small;
    color: white;
}

.card-img-overlay {
    padding: 0;
    display: block;
    width: 100%;
}

.turn span i {
    color: white;
    font-size: 18px;
    margin-left: 10%;
    font-weight: 600;
}

.turn a {
    text-decoration: none;
    font-weight: 600;
    color: white;
}

.turn a:hover {
    color: #1A9DD8;
}

.headText {
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.product-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #1A9DD8;
    border-radius: 10px;
    max-width: 600px;
    margin: 10px auto;
    background-color: #28367D;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    background-color: #1A9DD8;
    box-shadow: 0 8px 20px rgba(26, 157, 216, 0.6);
    cursor: pointer;
}

.product-image {
    max-width: auto;
    height: 100px;
    margin-right: 15px;
    border-radius: 8px;
    border: 2px solid white;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.product-description {
    margin: 5px 0;
    color: #d0e7ff;
    font-size: 0.9rem;
}

.product-price {
    font-weight: bold;
    margin-left: 10px;
    align-self: center;
    background-color: #1A9DD8;
    padding: 3px 10px;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
}

.footer {
    border-top: 1px solid #ffffff;
    font-size: 12px;
    padding: 10px 0;
    background-color: #28367D;
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: white;
}

.footer a:hover {
    color: #1A9DD8;
}
