.card {
    width: 25%;
    background-color: #1e3a5f;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 2px solid #CED535;
    position: relative;
}

.image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.suite-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content {
    padding: 20px;
    color: white;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #CED535;
    margin-bottom: 15px;
}

.category {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.category-icon {
    color: #e74c3c;
    font-size: 16px;
    margin-right: 8px;
}

.category-text {
    color: #e74c3c;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.location-icon {
    color: #27ae60;
    font-size: 16px;
    margin-right: 8px;
    margin-top: 2px;
}

.address-text {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.buttons {
    display: flex;
    gap: 12px;
}

.btn-info,
.btn-call {
    padding: 12px 20px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-info {
    background-color: #CED535 !important;
    color: #1e3a5f;
}

.btn-info:hover {
    background-color: #b8c030;
    transform: translateY(-1px);
}

.btn-call {
    background-color: transparent;
    color: white;
    border: 2px solid #CED535;
}

.btn-call:hover {
    background-color: #CED535;
    color: #1e3a5f;
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 480px) {
    .card {
        width: 100%;
        max-width: 320px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn-info,
    .btn-call {
        width: 100%;
    }
}
