.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}
.logo-placeholder {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #6c757d;
    margin: 0 auto 15px;
}
.logo-image {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}
.logo-image-large {
    max-width: 225px;
    max-height: 225px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}
.recommendation-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}
.content-section {
    padding: 60px 0;
}
.footer-section {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}
