.hero-section {
    background: url('/image/meowcare5.png') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    padding: 50px 15px;
}

@media (max-width: 768px) {
    .hero-section {
        background-position: top center; /* Adjust to show the important part */
        min-height: 120vh; /* Increase height for better scaling on mobile */
        padding: 30px 10px;
    }
}


.custom-card {
    background: rgba(255, 231, 231, 0.85); /* Slight transparency */
    max-width: 100%;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 247, 247, 0.31);
}

.custom-card-title {
    font-weight: bold;
    font-size: 1.5rem;
}

.custom-btn {
    background-color: #d7c0ef;
    color: #444;
    font-size: 16px;
    border-radius: 20px;
    padding: 10px 20px;
}

.custom-btn:hover {
    background-color: #c2a7f2;
    color: #fff;
}


/* Feedback Section */
.feedback-container {
    background-color: #fef2cf;
    padding: 50px 0;
}

.feedback-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffd2d2;
    color: #333;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.collapse-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding: 10px;
}

.read-more {
    color: #444;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
}

.read-more:hover {
    color: #6c63ff;
}


