body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}
header {
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
    padding: 50px 0;
}
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}